본문 바로가기

IT세상/error&exception

Spring boot 신규프로젝트 생성 후 Maven pom.xml 오류 발생시 해결방법

반응형

이클립스 STS로 스프링부트 신규 프로젝트 생성 후 maven pom.xml에 error가 발생하는경우가 있습니다.

다음과 같은 에러인데 서버를 기동하는데는 이상이 없지만 그래도 에러니까 없애주겠습니다.

javax.inject:javax.inject:pom:1 failed to transfer from https://repo.maven.apache.org/maven2 during a previous attempt.

This failure was cached in the local repository and resolution is not reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact javax.inject:javax.inject:pom:1 from/to central (https://repo.maven.apache.org/maven2): The operation was cancelled.

프로젝트 우클릭 Run As > Maven clean 을 해줍니다. 그다음에 바로 같은 항목에 있는 Maven install을 해줍니다.

그러면 maven이 열심히 다운받아 재인스톨을 합니다.

완료가 되면 pom.xml에 error가 없어진것을 확인할 수 있습니다.

반응형