본문 바로가기
기록/Java&Spring&Eclipse

[Eclipse] 메이븐 다운로드 오류 Error code 501, HTTPS Required

by 자임 2022. 6. 2.

 

오류 코드 : ArtifactTransferException: Failure to transfer (...) was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact (...) Failed to transfer http://repo.maven.apache.org/maven2/ (..) Error code 501, HTTPS Required

 

원인 : 보안 때문에 https로 다운 받아야 하는 거였음

 

해결 방법 : pom.xml에 아래 레퍼지토리 추가

 

<repositories>
    <repository>
        <id>mvn2</id>
        <url>https://repo.maven.apache.org/maven2</url>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
</repositories>

 

 

 

생명의 은인 : https://gcomx.blogspot.com/2020/05/spring.html

 

이클립스에서 Spring 웹 프로젝트 생성

Spring 웹 프로젝트 생성 Package Explorer 창에서 오른클릭 > New > Other... > Spring > Spring Project > Next > Spring MVC Project > Project name 작성 > Nex...

gcomx.blogspot.com