-1
사용자 역할을 기반으로 API를 보호하려고하지만 @PreAuthorize 주석이 제대로 작동하지 않는 것 같습니다. 사용자가 어떤 역할을 수행하든간에 서버는 403 오류를 발생시킵니다. 이 작품을 만드는 방법? 에 따르면봄 보안 기능을 사용하여 역할 기반 액세스를 API로 올바르게 제한하는 방법은 무엇입니까?
@Configuration
@EnableWebSecurity
@EnableGlobalMethodSecurity(prePostEnabled = true)
@Order(SecurityProperties.ACCESS_OVERRIDE_ORDER)
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Autowired
private DatabaseAuthenticationProvider authenticationProvider;
@Override
public void configure(WebSecurity web) throws Exception {
web.ignoring().antMatchers("/js/**", "/css/**", "/img/**");
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http.formLogin().loginPage("/login").failureUrl("/login").defaultSuccessUrl("/")
.and().logout().logoutSuccessUrl("/login")
.and().authorizeRequests().antMatchers("/login").permitAll()
/*.antMatchers("/settings.html").access("hasRole('HR')")
.antMatchers("/pendingRequests.html").access("hasRole('MANAGER')")
.antMatchers("/settings.html","/pendingRequests.html").access("hasRole('ADMIN')")*/
.anyRequest().authenticated().and().csrf().disable();
}
@Autowired
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
auth.authenticationProvider(authenticationProvider).eraseCredentials(false);
}
}
을 언급하지만, 어떤 사용자가 어떤이에 액세스 할 수 방법 – Gustavo
재 배열 후 그것은 작동합니까 ?? 클래스 수준에서 제거하고 메서드 수준에 추가합니다 (하지만 requestmapping 아래의 메서드 이름 위에 있어야 함) –