허걱. maven2에서
[INFO] Compilation failure
Failure executing javac, but could not parse the error:
An exception has occurred in the compiler (1.5.0_19). Please file a bug at the Java Developer Connection (http://java.sun.com/webapps/bugreport) after checking the Bug Parade for duplicates. Include your program and the following diagnostic in your report. Thank you.
java.nio.BufferOverflowException
at java.nio.Buffer.nextPutIndex(Buffer.java:419)
이런 에러가 났다. 소스코드를 전부 utf-8로 바꾼 이후 발생한 문제다.
같은 코드를 javac로 바로 빌드해 봤더니
[panboy@localhost sei]$ javac CDPMain.java
CDPMain.java:14: warning: unmappable character for encoding EUC_KR
// ??닿?? 留???? ??⑦?ㅼ????? 媛???몄?ㅺ린
^
이렇게 나온다. javac는 javac로 컴파일할 때
[panboy@localhost sei]$ javac -encoding utf-8 CDPMain.java
이렇게 해주면 되지만, 나는 지금 maven2를 사용중이기 때문에 maven2에서 환경설정을 해줘야 한다.
각 프로젝트마다 pom.xml 파일을 수정해 준다.
다음과 같이 compiler plugin 부분을 수정해 주면 된다.
<plugins>
<!-- Java Compiler -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
이제 잘 된다. ㅋ
'프로그래밍 > 자바' 카테고리의 다른 글
[자바] 복잡한 난수 쉽게 만드는 법 (0) | 2014.11.21 |
---|---|
iBatis 삽질의 추억 (0) | 2011.05.27 |
iBatis에서 iterate 쓰기 : 여러개의 or이나 in 안에 여러 개의 데이터 넣기 (2) | 2010.07.21 |
maven2에서 ibatis를 dependency 거는 법 - pom.xml에서 (0) | 2009.08.13 |
maven2에는 컴파일할 소스 디렉토리의 위치가 default로 정해져 있었다! (0) | 2009.08.12 |