Sky Archive

트러블슈팅 & 디버깅

[Eclipse] Lombok 설치 시, 이클립스 Problem 발생

KingPork 2021. 8. 12. 17:48

 

 * 이클립스 최신 버전에 lombok 을 설치하면서 발생한 오류 공유



 
 
An internal error occurred during: "Loading descriptor for KingPork.".
Unable to make protected final java.lang.Class java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int) throws java.lang.ClassFormatError accessible: module java.base does not "opens java.lang" to unnamed module @7d88fa9c
Errors occurred during the build.
Errors running builder 'Java Builder' on project 'KingPork'.
Unable to make protected final java.lang.Class java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int) throws java.lang.ClassFormatError accessible: module java.base does not "opens java.lang" to unnamed module @7d88fa9c

조치 사항 : eclipse.ini 에 아래 설정 추가

 --illegal-access=warn
 --add-opens java.base/java.lang=ALL-UNNAMED

참고 : https://github.com/projectlombok/lombok/issues/2882

 

에러 발생 : 

Plugin execution not covered by lifecycle configuration: org.apache.maven.palugins:maven-clean-plugin:3.0.0:clean (execution: auto-clean, phase: initialize)

* 문제의 소지가 있는 플러그인에 대해 에러로 처리하면서 발생하는 문제. Ignore 하지 않아도 문제가 되지는 않습니다.

Problems

windows > preferences > Maven > Errors/Warnings > Plugin execution not covered by lifecycle configuration : Ignore

Preferences > Maven > Erros/Warnings

참고 : https://knight76.tistory.com/entry/%EC%9D%B4%ED%81%B4%EB%A6%BD%EC%8A%A4-STS-maven-dependency-plugin-goals-copy-dependenciesunpack-is-not-supported-by-m2e