반응형
분명 어제까지 문제 없던 프로젝트 였는데 오늘 갑자기 빌드 오류가 발생합니다. ㅎㄷㄷ
1 2 | The project was not built since its build path is incomplete. Cannot find the class file for org.springframework.core.io.support.PropertySourceFactory. The type org.springframework.core.io.support.PropertySourceFactory cannot be resolved. It is indirectly referenced from required .class files MainApplication.java |
대체 왜? 아무리 생각해도 모르겠습니다.
그렇게 이것 저것 원인을 추측하며 구글링하던 중
1 | mvn dependency:purge-local-repository |
이 놈을 찾아 내었습니다.
두둥.
maven 중에 위 명령어를 실행하면 해당 pom.xml 에 명시된 dependency 들에 대해서 Local(~/.m2/repository)에 다운 받아 놓은 라이브러리들을 모두 지우고 다시 받아 줍니다.
cache를 clean하고 re download 하는 거죠.
그랬더니 거짓말처럼 오류가 사라졌네요. @@
뭘까 대체..
반응형
'java' 카테고리의 다른 글
org.apache.ibatis.type.TypeException: Could not resolve type alias (4) | 2018.08.09 |
---|---|
mybatis large result set. 대용량 select. fetchSize (0) | 2018.08.07 |
gc overhead limit exceeded excel download 엑셀 대용량 쓰기 (2) | 2018.08.06 |
spring boot junit test in linux (0) | 2018.08.02 |
spring boot 2.0 default connection pool (2) | 2018.07.25 |
fasterxml json parsing uppsercase (0) | 2018.07.24 |
spring resttemplate httpclient connection pool (0) | 2018.07.24 |
jackson fasterxml custom filter (exclude, masking) (0) | 2018.07.18 |