我们正在使用 jQuery mobile 开发一个移动应用程序,并希望在使用 spring 安全性正确设置的 spring 3.1.x 后端上以编程方式对用户进行身份验证。
包含用户名和密码的 POST 请求被发送到后端(使用 jQuery 的 $.post),然后服务器验证凭据是否正确并登录用户。
服务器似乎在 SecurityContext 中正确设置了身份验证,但是当我们向服务器发出第二个请求(一个 $.get 到需要登录的页面)时,似乎没有记住安全细节并且似乎是匿名令牌在上下文中。
这是控制器中处理登录的方法(为简洁起见,删除了密码检查):
@RequestMapping(value = "/login", method = RequestMethod.POST, produces = "application/json")
@ResponseBody
public Map<String, String> login(@RequestParam String username, @RequestParam String password, HttpServletRequest request) {
Map<String, String> response = new HashMap<String, String>();
User u = userService.findByAccountName(username);
if (u != null && u.hasRole("inspector")) {
UsernamePasswordAuthenticationToken token = new UsernamePasswordAuthenticationToken(username, password);
try {
Authentication auth = authenticationManager.authenticate(token);
SecurityContextHolder.getContext().setAuthentication(auth);
response.put("status", "true");
return response;
} catch (BadCredentialsException ex) {
response.put("status", "false");
response.put("error", "Bad credentials");
return response;
}
} else {
response.put("status", "false");
response.put("error", "Invalid role");
return response;
}
}
这是我们从上下文中获取用户详细信息的另一种方法:
@RequestMapping(value = "/project", method = RequestMethod.GET)
@ResponseBody
public String getProjects(HttpSession session) {
Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
User u = userService.findByAccountName(((UserDetails) authentication.getPrincipal()).getUsername());
...
弹簧安全配置:
<global-method-security pre-post-annotations="enabled"/>
<http use-expressions="true" auto-config="true">
<form-login login-processing-url="/static/j_spring_security_check" login-page="/"
authentication-failure-url="/?login_error=t"/>
...
<intercept-url pattern="/api/**" access="permitAll"/>
...
<remember-me key="biKey" token-validity-seconds="2419200"/>
<logout logout-url="/logout"/>
</http>
<authentication-manager alias="authenticationManager">
<authentication-provider user-service-ref="udm">
<password-encoder hash="md5"/>
</authentication-provider>
</authentication-manager>
这应该根据 spring 安全文档和其他在线资源工作。关于什么可能是错误的任何想法?