1. 程式人生 > >maven專案指定專案編碼

maven專案指定專案編碼

在pom檔案中新增兩項,這裡我用的GBK編碼

1、新增外掛指定jdk版本以及程式碼編碼

<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>
2、指定專案的編碼
<properties>
		<!-- 指定maven的專案編碼 -->
		<project.build.sourceEncoding>GBK</project.build.sourceEncoding>
  </properties>