JSR 250方法级安全性在Spring MVC中不起作用

时间:2015-03-24 14:38:03

标签: java spring spring-mvc spring-security jsr250

我尝试从基于@Configuration的安全性转移到JSR 250方法级安全性。以下代码的工作原理如下:

configure(HttpSecurity http)内的SecurityConfiguration.class中配置了对我的页面的访问权限。允许每个人访问"所有"页面,如果有人尝试" protected"然后显示默认登录页面,如果角色错误,那么"访问被拒绝"消息显示。细

现在,我想通过使用JSR 250 Annotations做同样的事情。所以:

我删除了configure(HttpSecurity http)方法,添加到调度程序servlet上下文配置

@EnableGlobalMethodSecurity(jsr250Enabled = true, proxyTargetClass = true, mode = AdviceMode.ASPECTJ, prePostEnabled=true)

显然在控制器内@PermitAll@RolesAllowed

这些更改无法正常运行。如果我尝试访问任何页面,我被问及有关凭据(默认登录页面),如果我填写它们,那么我可以访问任何角色的任何页面:(

我忘记了什么吗?

提前感谢您提供的任何帮助, 马立克

应用程序上下文:

@Import(SecurityConfiguration.class)
public class AppConfiguration {
  // entityManagerFactory, transactionManager, localValidatorFactoryBean, methodValidationPostProcessor 
}

@Configuration
@EnableWebMvcSecurity
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {

  @Inject
  public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
    auth.inMemoryAuthentication().withUser("marek").password("123456").roles("USER");
    auth.inMemoryAuthentication().withUser("bill").password("123456").roles("ADMIN");
    auth.inMemoryAuthentication().withUser("james").password("123456").roles("SUPERADMIN");
  }

  @Bean
  @Override
  public AuthenticationManager authenticationManagerBean() throws Exception {
    return super.authenticationManagerBean();
  }

  @Override
  protected void configure(HttpSecurity http) throws Exception {

    http.authorizeRequests().antMatchers("/all**").permitAll();
    http.authorizeRequests().antMatchers("/protected/**").access("hasRole('ROLE_ADMIN')");
    http.authorizeRequests().antMatchers("/confidential/**").access("hasRole('ROLE_SUPERADMIN')");
    http.authorizeRequests().and().formLogin();
}

的WebApplicationContext:

@Configuration
@EnableWebMvc
@EnableGlobalMethodSecurity(jsr250Enabled = true, proxyTargetClass = true, mode = AdviceMode.ASPECTJ, prePostEnabled=true)
@ComponentScan(basePackages = "xxx.xxx.controllers")
public class WebMvcConfiguration extends WebMvcConfigurerAdapter {
  // addInterceptors, addViewControllers, templateResolver, templateEngine, thymeleafViewResolver
}

控制器:

@Controller
public class HomeController {
  @PermitAll
  @RequestMapping(value = "/all**", method = RequestMethod.GET)
  public String allPage(Model model) {
    return "all";
  }

  @RolesAllowed("ADMIN")
  @RequestMapping(value = "/protected**", method = RequestMethod.GET)
  public String protectedPage(Model model) {
    return "protected";
  }

  @RolesAllowed("SUPERADMIN")
  @RequestMapping(value = "/confidential**", method = RequestMethod.GET)
  public String superAdminPage(Model model) {
    return "confidential";
  }
}

依赖关系:

<appengine.target.version>1.9.18</appengine.target.version>
<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
<javax.jsr250-api.version>1.0</javax.jsr250-api.version>
<spring.version>4.1.5.RELEASE</spring.version>
<spring.security.version>3.2.6.RELEASE</spring.security.version>
<spring.thymeleaf.version>2.1.4.RELEASE</spring.thymeleaf.version>
<aspectj.version>1.8.5</aspectj.version>

1 个答案:

答案 0 :(得分:1)

我注意到您的@ EnableGlobalMethodSecurity批注使用代理模式AdviceMode.ASPECTJ,但您的依赖项未列出AspectJ。

如果您正在尝试使用AspectJ代理,那么您需要提供依赖项并添加配置以使用AspectJ编译器进行编译。

如果您不打算使用AspectJ代理,请尝试不使用'mode = AdviceMode.ASPECTJ'参数。

编辑 - 这可能不是很明显。要使用AspectJ代理,您需要:

  1. 指定依赖项
  2. 提供aspectj插件配置以使用AspectJ编译器
  3. 进行编译

    以下是maven配置示例:Running JDK8 for aspectj

    这是gradle的一个:https://github.com/jigishpa/spring-samples/blob/master/aop/hello/build.gradle