1.效果图

spring cookie 设置secure spring获取cookie_cookie

2.添加新文件

我成功搭建了一个简单的helloWorld项目工程,本次继续在上次项目的基础上再添加两个文件:

test_restput.jsp文件(WebContent文件夹下面):

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>请求方式测试</title>
</head>
<body>

    <form action="testRest/11111" method="post">
        <input type="hidden" name="_method" value="PUT" /> <input
            type="submit" value="testRest Put" />
    </form>
    <br />
    <br />

    <form action="testRest/22222" method="post">
        <input type="hidden" name="_method" value="DELETE" /> <input
            type="submit" value="TestRest DELETE" />
    </form>
    <br/>
    <br/>

    <form action="testRest" method="post">
        <input type="submit" value="testRestPost">
    </form>
    <br />
    <br />

    <form action="testRest/33333" method="post">
        <input type="submit" value="testRestPost ID">
    </form>
    <br />
    <br />

    <a href="testRest">testRestGET</a>
    <br />
    <br />
    <a href="testRest/44444">testRestGET ID</a>
    <br />
    <br />

</body>
</html>

testRestPut.java(在com.shi.springmvc.handlers包下面)

package com.shi.springmvc.handlers;

import org.springframework.stereotype.Controller;

import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;

@RequestMapping("/springmvc")
@Controller
public class TestRestPut {

    private String SUCCESS = "success";

    @RequestMapping(value="/testRest/{id}", method=RequestMethod.PUT)
    public String testRestPut(@PathVariable(value="id") Integer id){
        System.out.println("test put:" + id);
        return SUCCESS;
    }

    @RequestMapping(value="/testRest/{id}", method=RequestMethod.DELETE)
    public String testRestDelete(@PathVariable(value="id") Integer id){
        System.out.println("test delete:" + id);
        return SUCCESS;
    }

    @RequestMapping(value="/testRest", method=RequestMethod.POST)
    public String testRestPost(){
        System.out.println("test post");
        return SUCCESS;
    }

    @RequestMapping(value="/testRest/{id}", method=RequestMethod.POST)
    public String testRestPost(@PathVariable(value="id") Integer id){
        System.out.println("test post:" + id);
        return SUCCESS;
    }

    @RequestMapping(value="/testRest", method=RequestMethod.GET)
    public String testRestGet(){
        System.out.println("test get");
        return SUCCESS;
    }

    @RequestMapping(value="/testRest/{id}", method=RequestMethod.GET)
    public String testRestGet(@PathVariable(value="id") Integer id){
        System.out.println("test get:" + id);
        return SUCCESS;
    }

    @RequestMapping(value="/testRequestParam")
    public String testRequestParam(@RequestParam(value="username") String username, @RequestParam(value="age", required=false, defaultValue="0") int age){
        System.out.println("testRequestParam" + " username:" + username + " age:" +age);
        return SUCCESS;
    }

}
3.SpringMVC匹配请求路径

@RequestMapping是用来映射请求的,比如get请求,post请求,或者REST风格与非REST风格的。其中的value对应的是匹配请求路径,而method对应的是请求方式,默认是Get方式。

  • @RequestMapping用在方法上
@RequestMapping(value="/testRest", method=RequestMethod.GET)
    public String testRestGet(){
        System.out.println("test get");
        return SUCCESS;
    }

在上面的代码中,当我们在testRest()方法上面添加@RequestMapping(value=”/testRest”, method=RequestMethod.GET)
,我们就可以通过http://localhost:8080/MySpringMvc/testRest直接访问到这个方法。

  • @RequestMapping用在类上
    该注解可以用在类上或者方法上,如果用于类上,表示该类中所有方法的父路径,如果我们在testRestPut 类添加:
@RequestMapping("/springmvc")
@Controller
public class testRestPut {

    private String SUCCESS = "success";
    @RequestMapping(value="/testRest", method=RequestMethod.GET)
    public String testRestGet(){
        System.out.println("test get");
        return SUCCESS;
    }
}

我们就可以通过http://localhost:8080/MySpringMvc/springmvc/testRest直接访问到这个方法。
注意这里还添加了一个@Controller的注解,该注解在SpringMVC 中,负责处理由DispatcherServlet 分发的请求,它把用户请求的数据经过业务处理层处理之后封装成一个Model ,然后再把该Model 返回给对应的View 进行展示。至此有了一个“springmvc/testRestGet”这样的路径,我们就能够定位到testRestGet这个方法上,然后执行方法内的方法体。

  再补充一点,RequestMapping可以实现模糊匹配路径,比如:

  ?:匹配一个字符

  *:匹配任意字符

  **:匹配多层路径

  /springmvc/**/lastTest 就可以匹配/springmvc/firstTest/secondTest/lastTest这样的路径

4.spring mvc获取请求参数
  • @PathVariable
    该注解用来映射请求URL中绑定的占位符。通过@PathVariable可以将URL中占位符的参数绑定到controller处理方法的入参中:
@RequestMapping(value="/testRest/{id}", method=RequestMethod.GET)
    public String testRestGet(@PathVariable(value="id") Integer id){
        System.out.println("test get:" + id);
        return SUCCESS;
    }
<a href="testRest/44444">testRestGET ID</a>

我们可以看到这里一个超链接,点击后会进入到testRest/44444对应的controller处理的方法中,那我们现在就是想获取到这个请求参数中的“44444”,所以在testPathVariable方法上加入“/testPathVariable/id”,关于id”,关于{id}的具体对应在该方法的参数中,通过@PathVariable(value=”id”)来声明要接收的请求参数,并通过Integer id来绑定和接收。通过该种方式,我们就可以得到前台页面请求的参数“44444”。

  • @RequestParam
    该注解也是用来获取请求参数的。那么该注解和@PathVariable有何不同呢?
@RequestMapping(value="/testRequestParam")
    public String testRequestParam(@RequestParam(value="username") String username, @RequestParam(value="age", required=false, defaultValue="0") int age){
        System.out.println("testRequestParam" + " username:" + username + " age:" +age);
        return SUCCESS;
    }
<a href="springmvc/testRequestParam?username=shitou&age=12">testRequestParam</a>

点击页面上的超链接,就会匹配controller中testRequestParam方法上的RequestMapping的路径。注意在该方法中,我们通过@RequestParam这个注解声明了两个变量,用来获取请求中query所带的参数值,一个是username后的值,另一个是age后面的值。一般来说,对于像“springmvc/testPathVariable/1”这样的请求,我们通过@PathVariable来绑定请求的参数;而对于类似“springmvc/testRequestParam?username=shitou&age=12”这样的请求参数是以键值对出现的,我们通过@RequestParam来获取到如username或age后的具体请求值。

5.spring mvc获取Cookie—-@CookieValue

重复之前的操作,我们再次新建两个文件:

test_cookie.jsp文件(WebContent文件夹下面):

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>界面标题</title>
</head>
<body>

<a href="testCookieValue">testCookieValue</a><br/><br/>

</body>
</html>

TestCookie.java文件

package com.shi.springmvc.handlers;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.CookieValue;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@Controller
public class TestCookie {

    private String SUCCESS = "success";

    @RequestMapping(value="/testCookieValue")
    public String testCookieValue(@CookieValue("JSESSIONID") String cookieValue){
        System.out.println("testCookieValue: " + cookieValue);
        return SUCCESS;
    }
}

第一次打开test_cookie.jsp,通过抓包工具会发现,服务器返回了一个set-Cookie的字段,如图所示:

spring cookie 设置secure spring获取cookie_spring mvc_02


然后我们点击test_cookie.jsp中的超链接,控制台会打印出

testCookieValue: 7E0E7E7B490BFD6CBD02679F61843330

经过对比,会发现我们获取到的testCookieValue和set-Cookie中的JSESSIONID一样,说明我们成功获取到了cookie。