tex*_*e11 13 spring spring-security
我已经使用spring security实现了更改密码功能,但((UserDetails)principal).getPassword())为登录用户返回null.
如果我没记错的话,过去常常在3.0中使用.这是在3.1中更改,以便无法检索登录用户的当前密码?
在下面的代码中,我正在检查从网页输入的用户密码中的当前密码.然后我检查登录用户的密码是否与输入的密码匹配.如果是,那么我想设置oldPasswordMatchNewPassword = true.
我该如何实现此功能?
@RequestMapping(value = "/account/changePassword.do", method = RequestMethod.POST)
public String submitChangePasswordPage(
@RequestParam("oldpassword") String oldPassword,
@RequestParam("password") String newPassword) {
Object principal = SecurityContextHolder.getContext()
.getAuthentication().getPrincipal();
String username = principal.toString();
if (principal instanceof UserDetails) {
username = ((UserDetails) principal).getUsername();
System.out.println("username: " + username);
System.out.println("password: "
+ ((UserDetails) principal).getPassword());
if (((UserDetails) principal).getPassword() != null) {
if (((UserDetails) principal).getPassword().equals(oldPassword)) {
oldPasswordMatchNewPassword = true;
}
}
}
if (oldPasswordMatchNewPassword == true) {
logger.info("Old password matches new password. Password will be updated.");
changePasswordDao.changePassword(username, newPassword);
SecurityContextHolder.clearContext();
return "redirect:home.do";
} else {
logger.info("Old password did not match new password. Password will be not be updated.");
return null;
}
}
Run Code Online (Sandbox Code Playgroud)
我放了几个sysout(),以便我可以看到返回的值.对于((UserDetails)principal).getUsername()我可以看到正确的登录用户.((UserDetails)principal).getPassword()它返回null.
我如何得到((UserDetails)principal).getPassword()这个值?
提前致谢!
tex*_*e11 25
我使用这段代码(erase-credentials ="false")来解决这个问题.我不知道这是否是一个优雅的解决方案,但它解决了我的问题:
<authentication-manager alias="authenticationManager" erase-credentials="false">
<!-- authentication-provider user-service-ref="userService" -->
<authentication-provider>
<jdbc-user-service data-source-ref="dataSource" />
</authentication-provider>
</authentication-manager>
Run Code Online (Sandbox Code Playgroud)
是的,3.1版本已经改变了.默认情况下,在成功进行身份验证后会清除凭据.您可以设置eraseCredentialsAfterAuthentication为false ProviderManager以防止这种情况.详情请见:http://static.springsource.org/spring-security/site/docs/3.2.x/reference/core-services.html#core-services-erasing-credentials
| 归档时间: |
|
| 查看次数: |
11017 次 |
| 最近记录: |