반응형
maven으로 컴파일을 할때 maven unmappable character for encoding UTF8 이러한 오류가 발생할 수 있다.
검색해 보면 해결 방법은 간단하게 찾을 수 있다.
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
위와 같은 구문으로 encoding을 설정해주면된다.
나같이 maven이 익숙하지 않은 사람들을 위해서 조금 더 자세하게 적으려고 한다.
위의 문구는 build라는 태그 안에 들어가야한다.
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
반응형
'컴퓨터공학 기초 > 기초개념+TIP' 카테고리의 다른 글
JAVA 환경변수를 설정했는데 java 명령어가 안 먹힐 때 (0) | 2020.12.29 |
---|---|
[Maven] java: Compilation failed: internal java compiler error (0) | 2020.12.13 |
[웹사이트] xss 방지 (0) | 2020.04.30 |
[기초개념] Session Time설정에 따른 장단점 (0) | 2020.04.11 |
[docker] the input device is not a TTY. If you are using mintty, try prefixing the command with 'winpty' (0) | 2020.04.06 |
댓글