Maven乱码解决 博客分类: Maven
程序员文章站
2024-02-23 13:19:40
...
1.编译乱码,设置编译的字符集编码和环境编码
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.4</source>
<target>1.4</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
设置环境变量MAVEN_OPTS=-Xms64m -Xmx128m -Dfile.encoding=UTF-8
2.运行mvn test时乱码(IDE上运行TestCase时OK,但是运行maven test乱码,结果测试不通过)修改pom.xml增加如下内容即可
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.7.2</version>
<configuration>
<forkMode>once</forkMode>
<argLine>-Dfile.encoding=UTF-8</argLine>
<systemProperties>
<property>
<name>net.sourceforge.cobertura.datafile</name>
<value>target/cobertura/cobertura.ser</value>
</property>
</systemProperties>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.4</source>
<target>1.4</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
设置环境变量MAVEN_OPTS=-Xms64m -Xmx128m -Dfile.encoding=UTF-8
2.运行mvn test时乱码(IDE上运行TestCase时OK,但是运行maven test乱码,结果测试不通过)修改pom.xml增加如下内容即可
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.7.2</version>
<configuration>
<forkMode>once</forkMode>
<argLine>-Dfile.encoding=UTF-8</argLine>
<systemProperties>
<property>
<name>net.sourceforge.cobertura.datafile</name>
<value>target/cobertura/cobertura.ser</value>
</property>
</systemProperties>
</configuration>
</plugin>
推荐阅读
-
Maven乱码解决 博客分类: Maven
-
js window.open 传递中文参数出现乱码解决办法 博客分类: 乱码
-
spring jpa的配置文件报错解决方案 博客分类: spring
-
Maven乱码解决 博客分类: Maven
-
js window.open 传递中文参数出现乱码解决办法 博客分类: 乱码
-
纯Java的高性能长连接RPC解决方案 博客分类: Netty管理spring长连接
-
全方位的技术服务及相关技术解决方案(纯java解决方案) 博客分类: WebSpring MVCHibernatespring长连接Ibatis3
-
linux 解压中文乱码 博客分类: linux
-
linux 解压中文乱码 博客分类: linux
-
Failure to transfer org.apache.maven.surefire:surefire:pom:2.10 解决办法