maven專案指定專案編碼
阿新 • • 發佈:2019-02-08
在pom檔案中新增兩項,這裡我用的GBK編碼
1、新增外掛指定jdk版本以及程式碼編碼
2、指定專案的編碼<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.7</source> <target>1.7</target> <!-- 設定編譯的字符集編碼和環境編碼 --> <encoding>GBK</encoding> <compilerArguments> <extdirs>src/main/webapp/WEB-INF/lib</extdirs> </compilerArguments> </configuration> </plugin>
<properties>
<!-- 指定maven的專案編碼 -->
<project.build.sourceEncoding>GBK</project.build.sourceEncoding>
</properties>