본문 바로가기
IT/Java

Spring Boot [0.0.1-SNAPSHOT] is not compatible with this Spring Cloud release train

by 성준하이 2024. 4. 15.
반응형

IDE 에서 Spring 을 사용하며 maven build 를 진행하니 아래와 같은 에러가 발생하였다.

 

Spring Boot [0.0.1-SNAPSHOT] is not compatible with this Spring Cloud release train

 

확인해보니 특정 라이브러리들이 버전끼리 호환이 잘 안되는 모양이었다.

 

그럼 application.yml 파일에 아래와 같은 설정 옵션을 추가하면 된다.

  • spring.cloud.compatibility-verifier.enabled=false

yml파일이나 maven에 대한 내용은 아래 참고 포스팅에서 참고 바란다.

 


참고 포스팅

https://thenicesj.tistory.com/197

 

빌드 관리도구 Maven / Gradle

Spring 을 사용하게 되면 프로젝트 생성시 빌드 도구를 maven이나 gradle 중에 하나를 선택하게 된다. 나의 경험으로는 안드로이드 앱을 관리할때는 gradle을 주로 사용해왔고, 웹이나 스프링 등의 프

thenicesj.tistory.com

https://thenicesj.tistory.com/531

 

application.properties vs application.yml

본 포스팅의 주제는 제목과 같다. 먼저 둘의 차이를 보기 위해서 예제를 보면 다음과 같다. application.yml server: port: 8080 servlet: context-path: /test encoding: charset: UTF-8 enabled: true force: true spring: datasource:

thenicesj.tistory.com

 

반응형

'IT > Java' 카테고리의 다른 글

Entity에 AutoIncrement 컬럼 설정  (23) 2024.04.19
Maven 버전 충돌되는 라이브러리들.  (43) 2024.04.16
GitLab4J  (22) 2024.04.08
Externalized Configuration  (19) 2024.04.07
java.net.MalformedURLException  (19) 2024.04.06

댓글