전체 글 404

[Eclipse] Must declare a named package because this compilation unit is associated to the named module

[ Problem ] Java프로젝트 생성후 기본패키지에 Class파일 생성하면 다음과 같은 에러가 발생 [ Error Log ] Error occurred during initialization of boot layer java.lang.module.FindException: Error reading module: Caused by: java.lang.module.InvalidModuleDescriptorException: found in top-level directory (unnamed package not allowed in module) [ Solution ] 해결 방법은 프로젝트에 자동생성된 module-info.java 파일을 삭제해주면 된다 Java프로젝트 생성시 만들어지지 않게 하려면 M..

Dev_Tool/Eclipse 2022.12.20

[SpringBoot] 오류: 기본 클래스 com.example.demo.SpringSchedulerApplication을(를) 찾거나 로드할 수 없습니다.

[Problem] 스프링부트 프로젝트 생성후 실행시 다음과 같이 클래스를 찾지 못하며 실행시 에러발생 console에는 오류: 기본 클래스 com.example.demo.SpringSchedulerApplication을(를) 찾거나 로드할 수 없습니다. 다음과 같은 알림창 노출됨 ✔ Solution 1. 해당 프로젝트 클릭후 Alt + Enter키를 누르면 해당 프로젝트의 Properties가 열리는데 Java Build Path > Libraries탭을 가보면 Classpath부분에 JRE System Libray가 X로 표시되고있다 이클립스의 JRE세팅이 잘못되어있는 것이다 2. 따라서 JRE를 다시 세팅해주면 된다 3. Alternate JRE 라디오버튼을 선택후 Installed JREs... 버..

Dev_Log 2022.12.15

JDK Version과 Bytecode Version

[ Tip ] Exception in thread "main" java.lang.UnsupportedClassVersionError: com/example/demo/SpringSchedulerApplication 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 52.0 위와 같은 에러가 발생하는 경우 아래를 표를 보고 JDK버전을 class file이 요구하는 버전으로 맞춰주면 된다 Class File Versions JDK Version ByteCode Ver..

Dev_Info 2022.12.15

[VS Code] Prettier - Code formatter가 안될 때

[Problem] Prettier - Code formatter를 성공적으로 설치했음에도 불구하고 코드 작성후 저장을 해도 Prettier가 적용되지 않을경우 [Solution] 1. VS Code의 설정을 열고( 단축키 : 윈도우기준 Ctrl + ,키 ) formatter를 검색하면 다음과 같이 설정되어 있다 2. None를 클릭하여 Prettier - Code formatter를 선택해주고 밑에 Format On Save체크박스도 체크해준다 3. 파일로 돌아가서 저장을 해보면 잘 적용된것을 볼 수 있다

Dev_Tool/VS Code 2022.12.14