MVC项目打包报错:
错误: -source 1.3 中不支持注释
但是编译通过。
解决: 指定maven打包的jdk版本:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.2</version>
<configuration>
<source>7</source>
<target>7</target>
<webXml>WEB-INF/web.xml</webXml>
</configuration>
</plugin>
</plugins>
</build>