-
(국비교육) 70 - 자바 버전 에러개발/국비교육 2023. 9. 11. 11:06
■ 자바 버전 에러 해결하기
Error: LinkageError occurred while loading main class com.poseidon.NoerrorApplication
java.lang.UnsupportedClassVersionError: com/poseidon/NoerrorApplication 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자바 버전이 맞지 않게 인식돼서 생기는 문제이다.
본인에게 맞는 버전인지 확인하고 맞춰주기
해당 부분도 확인한다.
var quill = new Quill('#editor',{theme: 'snow'}); function insertCode(){ fetch("/insertCode", { method: "POST", headers: {"Content-Type": "application/json"}, body: JSON.stringify({"code": quill.getText()}), }) .then(response => {return response.json();}) .then(data => { if(data.result == 1){ alert("데이터베이스에 입력했습니다."); location.replace("/board"); } else { alert("문제가 발생했습니다. 다시 시도하지 마세요."); location.replace("/write"); } }) .catch(error => { alert("너 문제있어?"); }); }
jar 파일로 만들기
파일 생성 확인 가능
cmd 로 해당 파일 위치 확인 후 이클립스는 종료해주기(겹치기 때문에)
cmd 로 jar 파일 실행 가능
'개발 > 국비교육' 카테고리의 다른 글
(국비교육) 72 - vue ( 반복문 + 구구단 + 소리버튼 + 증가버튼 + div) (0) 2023.09.13 (국비교육) 71 - 11회차 시험 + vue (0) 2023.09.12 (국비교육) 69 - Docker + 리눅스 계보 + os계보 (0) 2023.09.08 (국비교육) 68 - 몽고디비 (0) 2023.09.07 (국비교육) 67 - 파이썬 문제 (0) 2023.09.05