IDEA springboot “spring-boot

IDEA springboot “spring-boot

使用环境

项目环境:Idea 2020.2.3、 Maven 3.6.3 、springboot 2.1.4

本人在创建springboot项目时spring-boot-maven-plugin 及Idea右侧Plugins划红,导致项目启动打包有问题。虽然项目能跑,但是后续开发中可能会出现不可预知的问题。太碍眼决定把它解决掉。

可能原因:

1、maven没有刷新;
2、Maven插件下载速度太慢,从国外的中央仓库下载;
3、也有可能是本地springboot版本问题等….

分析思路:

1、到仓库中发现有这插件,然后clean install 以后reimport还是飘红。

2、那我们找到Maven地址中的setting.xml中的mirrors标签添加以下内容,maven再次下载jar包时,idea中看到,从阿里云提供的地址下载,速度比中央仓库快

 

 

 

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
					  https://maven.apache.org/xsd/settings-1.0.0.xsd">
	<localRepository>C:Usersxxx.m2epository</localRepository> <!--这个地方改成自己本地路径-->
	<interactiveMode/>
	<offline/>
	<pluginGroups/>
	<mirrors>
		<mirror>
			<id>alimaven</id>
			<name>aliyun maven</name>
			<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
			<mirrorOf>central</mirrorOf>        
		</mirror>
		<mirror> 
			<id>repo1.maven.org</id> 
			<name>Repo1 Maven of https://repo1.maven.org/maven2/</name> 
			<url>https://repo1.maven.org/maven2/</url> 
			<mirrorOf>central</mirrorOf> 
		</mirror>
		<!--
		-->
	</mirrors>
	<proxies/>
	<profiles>
		<profile>
			<id>downloadSources</id>
			<properties>
				<downloadSources>true</downloadSources>
				<downloadJavadocs>true</downloadJavadocs>           
			</properties>
		</profile>
	</profiles>
	<activeProfiles>
	  <activeProfile>downloadSources</activeProfile>
	</activeProfiles>
</settings>
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » IDEA springboot “spring-boot