这是一个春季安全问题。
我希望能够使用检索我的自定义用户对象对象
SecurityContextHolder.getContext().getAuthentication().getPrincipal();
因为我需要其他详细信息,例如用户 ID 和其他内容,以便在我的课程中实现进一步的业务逻辑。
为此,我有一个从 org.springframework.security.core.userdetails.jdbc.JdbcDaoImpl 派生的自定义类,我在其中覆盖了 loadUsersByUsername() 以填充其他用户字段并返回 MyUser 的对象,其中包含用户 ID 等额外字段.
代码 -
public class MyJdbcDaoImpl extends JdbcDaoImpl {
@Override
protected List<UserDetails> loadUsersByUsername(String username) {
return getJdbcTemplate().query(getUsersByUsernameQuery(), new String[] {username}, new RowMapper<UserDetails>() {
public UserDetails mapRow(ResultSet rs, int rowNum) throws SQLException {
Long id = rs.getLong(1);
String username = rs.getString(2);
String password = rs.getString(3);
boolean enabled = rs.getBoolean(4);
MyUser user = new MyUser(username, password, enabled, true, true, true, AuthorityUtils.NO_AUTHORITIES);
user.setId(id);
return user;
}
});
}
}
我的应用程序上下文 -
<beans:bean id="myJdbcDaoImpl" class="package.MyJdbcDaoImpl">
<beans:property name="dataSource" ref="securityDB"/>
<beans:property name="authoritiesByUsernameQuery" value="select username,role_id from app_user,user_role where app_user.id = user_role.user_id and username=?"/>
<beans:property name="usersByUsernameQuery" value="select id,username,password,account_enabled from app_user where username = ?"/>
</beans:bean>
<authentication-manager alias="authenticationManager">
<authentication-provider user-service-ref="myJdbcDaoImpl">
<password-encoder hash="sha"/>
</authentication-provider>
问题是,当我做一个
MyUser user = (MyUser) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
我得到一个异常 java.lang.ClassCastException: org.springframework.security.core.userdetails.User cannot be cast to package.MyUser
我应该怎么做才能使用来自 SecurityContextHolder 的附加字段访问我的用户对象?
谢谢