Spring1 [Spring] @Bean vs @Component @Bean vs @Component스프링 코어 강의를 보던중 스프링에서 자바 클래스를 빈(Bean) 객체로 등록하기 위해 사용하는 두 가지 어노테이션이 있다고 했다. @Bean과 @Component 어노테이션인데, 강의에서는 어노테이션 사용법만 알려주고 두 어노테이션의 차이점을 알려주지 않아서 차이점을 알아보기로 했다.@Bean@Configurationpublic class TestConfig { @Bean public ArrayList listBean() { return new ArrayList(); }}@Component@Configuration@ComponentScan(basePackages = "com.springex.college")public class TestConfig {}@Co.. 2020. 8. 2. 이전 1 다음