gpt4 book ai didi

java - Spring Security hasAnyRole 不起作用

转载 作者:搜寻专家 更新时间:2023-10-31 19:54:58 26 4
gpt4 key购买 nike

我正在开发一个带有 spring 安全认证和 MongoDB 的应用程序。身份验证方法工作正常,但仅适用于 ROLE_ADMIN。我需要身份验证的所有方法都带有注释:

@PreAuthorize("hasAnyRole('ROLE_ADMIN', 'ROLE_USER')")

当我尝试向具有 ROLE_USER 的用户进行身份验证时,我总是遇到访问被拒绝的错误。

我的 spring 安全配置是:

<security:global-method-security pre-post-annotations="enabled" />  
<security:http auto-config="true" use-expressions="true">
<intercept-url pattern="/login" access="permitAll" />
<intercept-url pattern="/logout" access="permitAll" />
<intercept-url pattern="/admin/**"
access="hasRole('ROLE_ADMIN') and hasRole('ROLE_USER')" />
<security:form-login login-page="/login" default-target-url="/admin/main"
authentication-failure-url="/accessdenied" />
<security:logout logout-success-url="/logout" />

<security:session-management>
<security:concurrency-control error-if-maximum-exceeded="true"
max-sessions="1"/>
</security:session-management>
</security:http>

如果我使用:

<intercept-url pattern="/admin/**" access="hasRole('ROLE_ADMIN') and hasRole('ROLE_USER')" />

ROLE_ADMINROLE_USER 的访问都被拒绝。

如果我使用:

<intercept-url pattern="/admin/**" access="hasAnyRole('ROLE_ADMIN', 'ROLE_USER')" />

我可以使用 ROLE_ADMIN 用户登录,但不能使用 ROLE_USER

在我的 LoginService 中我有:

public UserDetails loadUserByUsername(String email)
throws UsernameNotFoundException {
boolean enabled = true;
boolean accountNonExpired = true;
boolean credentialsNonExpired = true;
boolean accountNonLocked = true;

User user = getUserDetail(email);

userdetails = new org.springframework.security.core.userdetails.User(
user.getEmail(), user.getPwd(), enabled,
accountNonExpired, credentialsNonExpired, accountNonLocked,
getAuthorities(user.getIsAdmin()));

return userdetails;
}

public List<GrantedAuthority> getAuthorities(Integer role) {
List<GrantedAuthority> authList = new ArrayList<GrantedAuthority>();
if (role.intValue() == 0) {
authList.add(new SimpleGrantedAuthority("ROLE_USER"));
} else if (role.intValue() == 1) {
authList.add(new SimpleGrantedAuthority("ROLE_ADMIN"));
}
System.out.println(authList);
return authList;
}

我错过了什么?

最佳答案

当你遇到此类问题时,请先尝试添加多个System.out.println(或debug log)看看你的方法是否有效,同时更改:

hasRole('ROLE_ADMIN') and hasRole('ROLE_USER')

对于

hasRole('ROLE_ADMIN') or hasRole('ROLE_USER')

并检查 role.intValue() == 0 是否使用 sysout 打印 true

关于java - Spring Security hasAnyRole 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25340163/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com