Spring Boot无法通过POST请求发送cookie

时间:2020-06-26 18:34:55

标签: java spring-boot cookies

我的问题是我不知道如何通过POST请求将标头中的cookie发送回去。这适用于get请求:

 @RequestMapping(value = "test", method = RequestMethod.GET)
    @CrossOrigin
    public void cookie(HttpServletResponse response){
        Cookie cookie = new Cookie("test", "test");
        response.addCookie(cookie);

    }

但是如果我更改请求方法以将其发布,则显示错误代码500,这是服务器内部错误。

0 个答案:

没有答案