개인적인 정리

501 HTTPS Required. 본문

전자정부표준프레임워크/Exception 및 Error

501 HTTPS Required.

yeon.Biju 2020. 8. 25. 09:29

오랫만에 이전 프로젝트를 열어보니 동작하지 않는다.

이런 저런 시도를 해본 끝에 브라우저로 다음 URL을 접속해보니 오류가 난다.

 

http://repo1.maven.org/maven2/

 

501 HTTPS Required.

Use https://repo1.maven.org/maven2/
More information at https://links.sonatype.com/central/501-https-required

 

 

 

http://repo1.maven.org/maven2/

에서 
http 대신에  https로 사용하라는 말인 것 같다. 

https://repo1.maven.org/maven2/

 

 

아래 블로그에 보면 아래와 같이 말하고 있다. 

 

2020 년 1 월 15 일부터 Central Repository는 더 이상 일반 HTTP를 통한 안전하지 않은 통신을 지원하지 않으며 리포지토리에 대한 모든 요청은 HTTPS를 통해 암호화되어야합니다. 이 오류가 발생하면 Maven Central에 대한 모든 URL 참조를 표준 HTTPS로 바꿔야합니다.

 

 

https://bamdule.tistory.com/41

 

[Maven] Central 501 HTTPS Required 에러

Maven build 시 Central 501 HTTPS Required 에러가 난다면  Maven Central에 대한 모든 URL 참조를 표준 HTTPS로 바꿔야합니다 Effective January 15, 2020, The Central Repository no longer support..

bamdule.tistory.com

 

Comments