Eclipse中的Maven web工程,部署完打開網頁中文老是顯示亂碼,包括log4j日誌輸出也是亂碼,檢查了網頁編碼,web.xml, log4j配置文件,spring配置文件以及整個工程的編碼設定都無效,後來參考http://www.360doc.com/content/14/1231/11/1073512_437073494.shtml,增長了pom.xml中的編碼設定:html
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>web
問題解決。spring
在此記錄。apache