Skip to content

Instantly share code, notes, and snippets.

View zeewane's full-sized avatar
🤡
rebot

Zhiwei Qi zeewane

🤡
rebot
View GitHub Profile
@zeewane
zeewane / maven utf-8 compile
Last active May 30, 2018 09:10
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>