java source 1.5不支持diamond运算符
- 修改setting中
project bytecode version为8,下方表格中Target bytecode version为1.8 - 修改Project Structure->moudle
修改Language level与setting的java版本对应,与第一步对应改为8
本人测试后问题没有解决,哈哈哈 - 本人用这种方法问题解决
这种方法为maven包的初始配置,不过可以解决这种问题。主要是第二步的修改,因为问题主要出在jdk的版本上
修改maven包中conf/settings.xml文件配置- 本地仓库位置修改
在<localRepository>
标签内添加自己的本地位置路径
- 本地仓库位置修改
<!-- localRepository
| The path to the local repository maven will use to store artifacts.
|
| Default: ${user.home}/.m2/repository
<localRepository>/path/to/local/repo</localRepository>
-->
<localRepository>D:\tools\repository</localRepository>
2.修改maven默认的jdk版本
在<profiles>
标签下添加一个<profile>
标签,修改maven默认的JDK版本。
<profile>
<id>JDK-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
- 添加国内镜像源
添加<mirrors>
标签下<mirror>
,添加国内镜像源,这样下载jar包速度很快。默认的中央仓库有时候甚至连接不通。一般使用阿里云镜像库即可。这里我就都加上了,Maven会默认从这几个开始下载,没有的话就会去中央仓库了。
<!-- 阿里云仓库 -->
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>
<!-- 中央仓库1 -->
<mirror>
<id>repo1</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://repo1.maven.org/maven2/</url>
</mirror>
<!-- 中央仓库2 -->
<mirror>
<id>repo2</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://repo2.maven.org/maven2/</url>
</mirror>