[에러해결] Eclipse | java.lang.UnsupportedClassVersionError

Hyeongmin Jung·2025년 2월 6일
0

Error

목록 보기
13/13

Error: LinkageError occurred while loading main class complete.main

java.lang.UnsupportedClassVersionError: complete/main 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

✊🏻문제 원인

java class(version 61.0)가 실행환경의 java(version 55.0)보다 높은 환경에서 컴파일 되었기 때문이다.
실행환경 java 버전을 JAVA_HOME을 변경하여 높이거나 class를 포함하는 jar 파일을 낮은 java 버전으로 다시 컴파일하여 버전을 버전을 맞추어주어야한다.

✨해결 방법

java compiler level을 11(←17)로 내려주었다.

0개의 댓글