등록일:2020-01-17 14:23:06 (0%) 작성자: 제목:Spring - Autowiring 관련 오류
Spring - Autowiring 관련 오류
Bean을 찾지 못해서 발생하는 오류
아래와 같이 Bean이 없다면서 Autowiring이 안 되는 경우가 있다.
***************************
APPLICATION FAILED TO START
***************************
Description:
Field xxxRepository in yyyService required a bean of type '어쩌구.XXXRepository' that could not be found.
Action:
Consider defining a bean of type '어쩌구.XXXRepository' in your configuration.
ComponentScan or scanBasePackages
일반적으로는 @ComponentScan(basePackages = {}) 또는 @SpringBootApplication(scanBasePackages = {})로 해당 Bean이 존재하는 패키지를 지정해주면 된다.