본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

JAVA/Maven

java.lang.UnsupportedClassVersionError

Exception in thread "main" java.lang.UnsupportedClassVersionError: org/springframework/boot/SpringApplication has been compiled by a more recent version of the Java Runtime (class file version 61.0), this version of the Java Runtime only recognizes class file versions up to 55.0

 

org.springframework.boot 버전을 낮춘다. 2.6.3도 잘되지만

나는 교재와 버전을 맞추기위해 2.0.6으로 해결했다.

<version>2.0.6.RELEASE</version>

<version>2.6.3</version>

<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.6.RELEASE</version>