经验首页 前端设计 程序设计 Java相关 移动开发 数据库/运维 软件/图像 大数据/云计算 其他经验
当前位置:技术经验 » 软件/图像 » Maven » 查看文章
spring-boot-maven-plugin引入出现爆红(已解决)
来源:jb51  时间:2021/3/8 12:40:24  对本文有异议

一、问题描述

换了一台电脑,重新进行idea安装配置。然后打开原来的项目结果引入spring-boot-maven-plugin出现爆红,而且spring-boot-starter-parent也不能引入。

二、解决办法

1.检查环境配置,主要是settings.xml此文件配置情况是否正确,是否加入阿里云镜像。最好用idea工具打开检查一下是否规范,此次我的问题就出在settings.xml报错了(网上随意复制粘贴了一个)。settings.xml配置文件以及idea工具打开查看的方式如下所示。

在这里插入图片描述

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  5. <!-- 配置本地仓库地址 -->
  6. <!--<localRepository>E:\maven\repository</localRepository>-->
  7.  
  8. <!-- 配置下载Jar包的镜像仓库地址 -->
  9. <mirrors>
  10.  
  11. <mirror>
  12. <id>alimaven</id>
  13. <name>aliyun maven</name>
  14. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  15. <mirrorOf>central</mirrorOf>
  16. </mirror>
  17.  
  18. <mirror>
  19. <id>uk</id>
  20. <name>Human Readable Name for this Mirror.</name>
  21. <url>http://uk.maven.org/maven2/</url>
  22. <mirrorOf>central</mirrorOf>
  23. </mirror>
  24.  
  25. <mirror>
  26. <id>nexus</id>
  27. <name>internal nexus repository</name>
  28. <url>http://repo.maven.apache.org/maven2</url>
  29. <mirrorOf>central</mirrorOf>
  30. </mirror>
  31. </mirrors>
  32.  
  33. <profiles>
  34. <!-- 下载源代码和Javadoc -->
  35. <profile>
  36. <id>downloadSources</id>
  37. <properties>
  38. <downloadSources>true</downloadSources>
  39. <downloadJavadocs>true</downloadJavadocs>
  40. </properties>
  41. </profile>
  42. </profiles>
  43.  
  44. <!-- 激活在profiles的配置项 -->
  45. <activeProfiles>
  46. <activeProfile>downloadSources</activeProfile>
  47. </activeProfiles>
  48.  
  49. </settings>

2.检查代码是否出错,加上具体版本号。

参考:https://blog.csdn.net/weixin_41988224/article/details/104388981

到此这篇关于spring-boot-maven-plugin引入出现爆红(已解决)的文章就介绍到这了,更多相关spring-boot-maven-plugin爆红内容请搜索w3xue以前的文章或继续浏览下面的相关文章希望大家以后多多支持w3xue!

 友情链接:直通硅谷  点职佳  北美留学生论坛

本站QQ群:前端 618073944 | Java 606181507 | Python 626812652 | C/C++ 612253063 | 微信 634508462 | 苹果 692586424 | C#/.net 182808419 | PHP 305140648 | 运维 608723728

W3xue 的所有内容仅供测试,对任何法律问题及风险不承担任何责任。通过使用本站内容随之而来的风险与本站无关。
关于我们  |  意见建议  |  捐助我们  |  报错有奖  |  广告合作、友情链接(目前9元/月)请联系QQ:27243702 沸活量
皖ICP备17017327号-2 皖公网安备34020702000426号