Maven:Missing artifact com.sun:tools:jar:1.8.0

pom.xml 中一直提示报错

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

在Problems中发现以下三个错误提示
在这里插入图片描述

pom.xml文件中手动引入

		<dependency>
			<groupId>com.sun</groupId>
			<artifactId>tools</artifactId>
			<version>1.8.0<ersion>
			<scope>system</scope>
			<systemPath>${
     env.JAVA_HOME}b/tools.jar</systemPath>
			<optional>true</optional>
		</dependency>

测试通过
Maven:Missing artifact com.sun:tools:jar:1.8.0_第1张图片

你可能感兴趣的:(Spring)