创建springboot工程,pom.xml文件报红,

创建springboot工程,pom.xml文件报红

我总共试了三种方法,对我而言第三种才有效。
如图:

创建springboot工程,pom.xml文件报红,_第1张图片然后在网上找了一大堆如何解决springboot的pom.xml文件报红。
第一种:有说去修改maven的下conf文件夹下的settings.xml的三个主要信息创建springboot工程,pom.xml文件报红,_第2张图片第二种:修改idea下的maven配置信息:
创建springboot工程,pom.xml文件报红,_第3张图片
第三种:(转载:https://blog.csdn.net/gfl1427097103/article/details/104840380/)
打开maven目录下的conf ,再打开 settings.xml。在mirrors里面写入:

`
	<mirror>
		<id>alimavenid>
		<name>aliyun mavenname>
		<url>http://maven.aliyun.com/nexus/content/groups/public/url>
		<mirrorOf>centralmirrorOf>
	mirror>
	<mirror>
		<id>centralid>
		<name>Maven Repository Switchboardname>
		<url>http://repo1.maven.org/maven2/url>
		<mirrorOf>centralmirrorOf>mirror>
	<mirror>
		<id>repo2id>
		<mirrorOf>centralmirrorOf>
		<name>Human Readable Name for this Mirror.name>
		<url>http://repo2.maven.org/maven2/url>
	mirror>
	
	<mirror>
		<id>ibiblioid>
		<mirrorOf>centralmirrorOf>
		<name>Human Readable Name for this Mirror.name>
		<url>http://mirrors.ibiblio.org/pub/mirrors/maven2/url>
		mirror>

	<mirror>
		<id>maven.net.cnid>
		<name>oneof the central mirrors in chinaname>
		<url>http://maven.net.cn/content/groups/public/url>
		<mirrorOf>centralmirrorOf>
	mirror>

之后还是有些问题,
创建springboot工程,pom.xml文件报红,_第4张图片然后再JV Options内添加:

-Dmaven.wagon.http.ssl.insecure=true
-Dmaven.wagon.http.ssl.allowall=true
-Dmaven.wagon.http.ssl.ignore.validity.dates=true

最后我点击加载:
创建springboot工程,pom.xml文件报红,_第5张图片

你可能感兴趣的:(bug)