-2
在這個例子中有一個@Autowired
註解放在configureGlobal
方法:使用@EnableWebSecurity時,configureGlobal(..)需要@Autowired嗎?
@EnableWebSecurity
public class MultiHttpSecurityConfig {
@Autowired
public void configureGlobal(AuthenticationManagerBuilder auth) {
auth
.inMemoryAuthentication()
.withUser("user").password("password").roles("USER").and()
.withUser("admin").password("password").roles("USER", "ADMIN");
}
是必要的或不Spring自動注入與@EnableWebSecurity?
註釋上方法AuthenticationBuilder?
的代碼片段從when-to-use-spring-securitys-antmatcher