아무거나

[intellij]Could not autowired, No beans of ~ 에러 본문

IT/개발관련툴

[intellij]Could not autowired, No beans of ~ 에러

전봉근 2019. 12. 26. 01:47
반응형

[Could not autowired,  No beans of ~]

이클립스에서 인텔리제이로 변경시 주의 사항입니다.

 

Could not autowired,  No beans of  ~

증상

이클립스에선 문제없이 컴파일되지만 인텔리j 에선 위와 같은 오류가 나면서 컴파일 되지않습니다.

 

[방법 1]

1. Help -> Edit Custom Properties

아래 정보를 추가합니다.

idea.spring.boot.filter.autoconfig=false

 

[방법 2]

패키지내 아래와 같은 Configuration 을 추가하여 인텔리제이에게 인식시켜줍니다.

@Configuration

@ComponentScan({"@Autowired 대상이 있는 패키지"})

class ComponentScanConfiguration {}​ 

반응형
Comments