@CookieValue的作用
用来获取Cookie中的值
@CookieValue参数
1、value:参数名称
2、required:是否必须
3、defaultValue:默认值
@CookieValue使用案例
1、我们在index.jsp页面中创建cookie值
1 <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 3 4 5 6 11 12 13 14 15 查看Cookie16 17 18
2、在控制器中
1 @RequestMapping("/testCookie")2 public String testCookie(@CookieValue(value="name",required=false) String name,3 @CookieValue(value="age",required=false) Integer age){4 System.out.println(name+","+age);5 return "hello";6 }
测试代码
测试1:
我们直接访问http://localhost:8080/springmvc-1/testCookie
输出结果为:null,null
测试2:
我们现在访问http://localhost:8080/springmvc-1 这里路径直接对应index.jsp页面
进入页面后通过开发者工具,我们查看到到cookie信息
然后再次访问http://localhost:8080/springmvc-1/testCookie
结果输出:caoyc,18