尽管set-cookie存在于响应头中,但浏览器不会创建cookie

时间:2016-02-18 04:04:13

标签: spring-security restful-authentication setcookie

我正在基于restful,spring security创建登录功能。

在客户端,当我使用ajax在restful endpoint中调用登录功能时:

$。AJAX({                 类型:'POST',                 网址:'http://192.168.0.2:8081/recruitment/api/login',                 成功:功能(响应){                     警报( “成功”);

            },
            data : {
                username : userName,
                password : password,
                redirect : 'home'

            },
            cache: false
        });

响应状态正常,我在响应头中看到了set-cookie选项:

设置Cookie:JSESSIONID = 5CB1449126C9F5EFE365B0C43CAA0598;路径= /招募/;仅Http

但实际上,客户端没有创建cookie。我不知道为什么?

你能帮我吗?

0 个答案:

没有答案