Skip to content

Instantly share code, notes, and snippets.

@zeewane
Last active May 30, 2018 09:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zeewane/4f52b9cbad382c602b30f9e499d83032 to your computer and use it in GitHub Desktop.
Save zeewane/4f52b9cbad382c602b30f9e499d83032 to your computer and use it in GitHub Desktop.
maven指定编码打包防止中文乱码
<!-- 以防maven编译出现中文乱码导致页面乱码 -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment