一、[WARNING] Using platform encoding (GBK actually) to copy filtered resources, i.e. build is platform dependent!web
pom.xml添加:maven
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>ui
二、orm
[WARNING] Warning: selected war files include a WEB-INF/web.xml which will be ignored
(webxml attribute is missing from war task, or ignoreWebxml attribute is specified as 'true')xml
將pom.xml中maven-war-plugin版本由2.1.1改成2.3:ci
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
</plugin>io