Eclipse 에서 Properties file 의 한글이 \uxxxx 로 변형되는 문제
IDE2018. 7. 13. 10:26Eclipse 에서 Properties file 의 한글이 \uxxxx 로 변형되는 문제

Properties 파일 한글 깨짐 Eclipse 의 플로그인 중 Properties를 보안문제로 저장하는 시점에 unicode로 변환하는 기능이 있습니다. 이 플로그인으로 인해 한글이 unicode로 변환되는 것입니다. 해당 변환된 unicode를 다시 한글로 보이게 하는 플로그인을 설치하면 정상적으로 한글로 표시됩니다. message_ko.properties 원본 파일 open str.number=순번 str.search=검색 str.save=저장​ Eclipse 에서 message_ko.properties 파일 open str.number=\uc21c\ubc88 str.search=\uac80\uc0c9 str.save=\uc800\uc7a5​ 해결방법 1. Eclipse Toolbar > Help..

[오류] Java Problem - The method getUserName() is undefined for the type User
Web Program/Java2018. 6. 30. 23:32[오류] Java Problem - The method getUserName() is undefined for the type User

The method getUserName() is undefined for the type User add lombok dependency org.projectlombok lombok 1.16.8 provided 이클립스에서 애노테이션 @Setter, @Getter을 사용하고 발생되는 문제이다. 해결방법 이클립스에 javaagent 에 lombok 을 추가 해주면 된다. 1. 방법 lombok.jar 실행 아래의 경로는 각 window 사용자계정에 따라 다르다 1 C:\Users\[사용자계정]\.m2\repository\org\projectlombok\lombok\1.16.8 lombok-1.16.8.jar 을 더블클릭하여 실행한다. 2. 방법 cmd.exe에서 실행 아래오 같이 lombok.jar 파일..

[오류] Maven Build Problem - You need to run build with JDK or have tools.jar on the classpath.If
Web Program/Spring FW2018. 6. 30. 17:01[오류] Maven Build Problem - You need to run build with JDK or have tools.jar on the classpath.If

You need to run build with JDK or have tools.jar on the classpath.If this occures during eclipse build make sure you run eclipse under JDK as well (com.mysema.maven:apt-maven-plugin:1.0.9:process:default:generate-sources) 이클립스 빌드 시, 클래스 패스에 tools.jar이 필요하다는 문제입니다. pom.xml 에 오류 발생 com.mysema.maven apt-maven-plugin 1.0.9 process sts install path > STS.ini STS.ini 파일을 열어서 아래와 같이 추가 합니다. -startup pl..

image