0

我正在将 Spring Security(Spring Boot 应用程序)与 AngularJS 一起使用,并且我正在尝试根据用户授予的权限来允许/拒绝对特定映射的访问。

用户.java

public class User implements UserDetails {
    ...
    private String username;
    private String password;
    private boolean enabled;
    private List<GrantedAuthority> grantedAuthorities;

    public User(...) {...}

    private class Permission implements GrantedAuthority {
        String permission;

        public Permission(String permission) {
            this.permission = permission;
        }

        @Override
        public String getAuthority() {
            return permission;
        }
    }

    @Override
    public Collection<? extends GrantedAuthority> getAuthorities() {
        return grantedAuthorities;
    }
    ...
}

另外,我有自己的UserDetailsService(method loadUserByUsername(String username)) 实现,它使用数据库中的数据填充用户数据。

前面提到的映射是:

@RequestMapping("yes")
public void doesHaveAuthority() {yes();}

@PreAuthorize("hasAuthority('10001')")
private void yes() {}

@RequestMapping("no")
public void doesntHaveAuthority() {no();}

@PreAuthorize("hasAuthority('00000')")
private void no() {}

用户确实有权限“10001”,但没有权限“00000”,/yes应该允许访问,但/no不应该访问。不幸的是,这两条路径都是允许的。

我有这里spring-security-config提到的 Maven 依赖。

我的 WEB-INF/web.xml

<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
        http://java.sun.com/xml/ns/javaee
        http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">

    <filter>
        <filter-name>springSecurityFilterChain</filter-name>
        <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
    </filter>

    <filter-mapping>
        <filter-name>springSecurityFilterChain</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/security.xml</param-value>
    </context-param>

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

</web-app>

和 WEB-INF/security.xml

<beans:beans xmlns="http://www.springframework.org/schema/security"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:beans="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/security
        http://www.springframework.org/schema/security/spring-security.xsd">

    <context:component-scan base-package="com.mycompany.project" />

    <global-method-security pre-post-annotations="enabled" />

</beans:beans>

所以,总结一下: UserDetailsS​​ervice 实现工作(我可以使用用户凭据登录并记录器打印授予的权限,所以我知道他们在那里),但是用户可以访问这两个路径,yes/no实际上他/她不应该能够访问/no,因为他/她没有权限(许可)“00000”。

也许我的 xml 配置不正确或根本没有被读取。

谢谢你的时间

更新正如 M. Deinum 在评论中所说,Spring Boot 忽略了 web.xml 和 security.xml 文件。解决方案是修改SecurityConfigurationwhich extendsWebSecurityConfigurerAdapter并添加具有相应权限的相应 antMatchers。

例子:

@Override
protected void configure(HttpSecurity http) throws Exception {
    http.httpBasic().and()
        .authorizeRequests()
        .antMatchers("/login.html", "/index.html", "/").permitAll()
        .antMatchers("/yes").hasAuthority("10001")
        .antMatchers("/no").hasAuthority("00000")
        .anyRequest()
        .authenticated().and()
        .addFilterAfter(new CSRFHeaderFilter(), CsrfFilter.class)
        .csrf().csrfTokenRepository(csrfTokenRepository());
}
4

1 回答 1

2

用户“我们是博格”让我发布解决方案作为答案,所以这里是:

基本上,由于我的应用程序是 Spring Boot 应用程序,因此它被忽略(忽略了我的 .xml 配置文件)。解决方案非常简单:扩展WebSecurityConfigurerAdapter和覆盖configure(HttpSecurity)方法。覆盖它时,请确保用户具有访问路径(antMatchers)的权限和/或权限。它应该看起来像这样:

安全配置.java

@Configuration
@Order(SecurityProperties.ACCESS_OVERRIDE_ORDER)
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.httpBasic().and()
            .authorizeRequests()
            .antMatchers("/login.html", "/index.html", "/").permitAll()
            .antMatchers("/yes").hasAuthority("10001")
            .antMatchers("/no").hasAuthority("00000")
            .anyRequest().authenticated();
    }

}

而且您不再需要@PreAuthorize注释,也不需要 .xml 配置文件(security.xml、web.xml 等...)

祝你好运 ;)

于 2015-11-03T12:01:02.020 回答