springboot cookie操作(@Cookie)

时光总嘲笑我的痴心妄想 提交于 2019-12-21 08:22:30

springboot cookie操作(@Cookie)

 

*******************************

相关注解

 

@Cookie:使用注解读取cookie数据

@Target({ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface CookieValue {
    @AliasFor("name")
    String value() default "";

    @AliasFor("value")
    String name() default "";

    boolean required() default true;

    String defaultValue() default "\n\t\t\n\t\t\n\ue000\ue001\ue002\n\t\t\t\t\n";
}

 

**********************************

示例

 

@RestController
public class HelloController {

    @RequestMapping("/hello2")
    public String hello2(HttpServletResponse response){
        Cookie cookie=new Cookie("name","瓜田李下");
        response.addCookie(cookie);

        return "success 2";
    }

    @RequestMapping("/hello3")
    public String hello3(HttpServletRequest request,@CookieValue("name") String name){
        System.out.println(name);

        Cookie[] cookies=request.getCookies();
        for (Cookie cookie:cookies){
            System.out.println(cookie.getName()+"  "+cookie.getValue());
        }

        return "success 3";
    }
}

 

***************************

测试输出

 

localhost:8080/hello2:向客户端添加cookie,

localhost:8080/hello3,控制台输出

瓜田李下
name  瓜田李下

 

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!