2

我正在尝试Spring Security 3.2RC2。是否可以@EnableWebSecurity与预身份验证一起使用?我找不到那个配置器。

4

1 回答 1

0

使用此注释:@EnableGlobalMethodSecurity

@Configuration
@EnableGlobalMethodSecurity(prePostEnabled=true)
public class HelloMethodSecurityConfig {
    ...
}

资源

于 2013-11-09T04:17:48.993 回答