Java/Java: 에러 정리

[Java:오류정리]Error occurred during initialization of boot layer: 해결 방법, module-info.java로 발생하는 에러

데브마우스 2023. 11. 23. 19:47

Error occurred during initialization of boot layer
java.lang.module.FindException: Error reading module: "directory"
Caused by: java.lang.module.InvalidModuleDescriptorException: Main.class found in top-level directory (unnamed package not allowed in module)


(위의 "directory"는 사용자마다 다르게 나타날 수 있습니다.)

 

에러 발생 환경:

사용 IDE: 이클립스(Eclipse)

사용 자바: JDK 17

 

이클립스에서 자바 프로그래밍을 하던 중 만난 에러입니다. 

main 함수가 들어있는 파일을 컴파일하고 실행할 수 없습니다.

 

해결 방법:

Project Explorer의 에러가 발생하는 해당 src 디렉터리의 module-info.java를 삭제합니다.

 

참고 자료:

https://www.oracle.com/corporate/features/understanding-java-9-modules.html