好久没更新东西了
是学的东西少了?觉得好些东西都是百度+谷歌都是可以解决的,私下添加下笔记,没有必要来分享了。是真的学的少了吧
最近在弄Eclipse Manen,有点不懂,这个错不明所以,分享一下(与网上的都不相同)~~~
最终解决办法
<project>
...
<build>
<plugins>
<!-- define the project compile level -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
</project>