반응형
스프링부트 Component 등록
-
스프링 Spring @Autowired? @Component? @Bean?차이Spring Boot 2023. 7. 16. 15:56
스프링 시큐리티를 설정하면서 @Autowired, @Bean, @Component어노테이션이 많이 보이는데 어떤건지 간단하게 정리해보자 SecurityConfig.java @Configuration @EnableWebSecurity public class SecurityConfig{ // 권한이 없는 사용자 접근에 대한 handler @Bean CustomWebAccessDeniedHandler customWebAccessDeniedHandler() { return new CustomWebAccessDeniedHandler(); } // 인증되지 않은 사용자 접근에 대한 handler @Autowired private CustomWebAuthenticationEntryPoint customWebAuthe..