maven编译中文错误

[ERROR] \workspace\test\storepsw\src\main\java\com\randy\project\storepsw\Consta

nts.java:[5,53] 编码 UTF-8 的不可映射字符

在plugins中加入一个插件即可:

<plugin>
	<groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-compiler-plugin</artifactId>
	<configuration>
		<encoding>GBK</encoding>
		<source>1.6</source>
		<target>1.6</target>
		<showDeprecation>true</showDeprecation>
		<showWarnings>true</showWarnings>
	</configuration>
</plugin>
 

猜你喜欢

转载自javaloverlover.iteye.com/blog/1752690