deploy发布的jar包中文乱码
背景
- 使用
mvn clean package deploy -DskipTests
发布的jar包。 - 源码显示正常
- 打包时出现Using platform encoding (GBK actually) to copy filtered resources, i.e. build is platform dependent!
- HTTP调用返回异常
解决方案
- pom.xml加入
<encoding>utf-8</encoding>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<encoding>utf-8</encoding>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
- 重新发布调用返回正常,如下所示。