-
[Spring] The type org.springframework.core.io.Resource cannot be resolved 에러 해결Web/Servlet && Spring 2019. 8. 11. 23:11
The type org.springframework.core.io.Resource cannot be resolved. It is indirectly referenced from required .class files
에러 해결방법
프로젝트의 빌드가 무언가 문제가 있었다.
maven install시에 콘솔창에 에러문구가 떴다.
[ERROR] error reading C:\Users\sjcnote\.m2\repository\org\springframework\spring-aop\5.1.7.RELEASE\spring-aop-5.1.7.RELEASE.jar; invalid LOC header (bad signature) [ERROR] error reading C:\Users\sjcnote\.m2\repository\org\springframework\spring-beans\5.1.7.RELEASE\spring-beans-5.1.7.RELEASE.jar; invalid LOC header (bad signature) [ERROR] error reading C:\Users\sjcnote\.m2\repository\org\springframework\spring-expression\5.1.7.RELEASE\spring-expression-5.1.7.RELEASE.jar; invalid LOC header (bad signature) [ERROR] error reading C:\Users\sjcnote\.m2\repository\org\springframework\spring-core\5.1.7.RELEASE\spring-core-5.1.7.RELEASE.jar; invalid LOC header (bad signature) [ERROR] error reading C:\Users\sjcnote\.m2\repository\org\aspectj\aspectjweaver\1.9.4\aspectjweaver-1.9.4.jar; invalid LOC header (bad signature) [ERROR] error reading C:\Users\sjcnote\.m2\repository\org\aspectj\aspectjtools\1.9.4\aspectjtools-1.9.4.jar; invalid LOC header (bad signature)
네트워크가 불안정 했던지 jar파일이 제대로 받아지지 않았다.
그럼 에러가 난 경로에 해당파일들을 다 삭제하고 다시 메이븐 update - clean - install을 하면 된다.
스프링은 에러 해결이 반이구나.. ㅎㅎ
반응형'Web > Servlet && Spring' 카테고리의 다른 글
[Spring] 한글설정, UTF-8설정 (0) 2019.08.13 [Spring] 스프링 beans.xml 열수 없다는 에러 (0) 2019.08.11 [Spring] Life Cycle (0) 2019.08.11 [Spring] publicId와 systemId 사이에는 공백이 필요 에러 해결 (0) 2019.08.11 [Spring] AOP사용방법 (0) 2019.08.10