我是靠谱客的博主 饱满水蜜桃,最近开发中收集的这篇文章主要介绍springboot 2.x 构建遇到的问题和解决方案,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

下载springboot 2.x

  • 下载地址:https://github.com/spring-projects/spring-boot
  • 找到对应的版本,建议2.1.x
  • 使用git clone remoteAddress 将项目克隆到本地

问题:下载速度缓慢

解决方案

  • fork springboot到自己的仓库
  • 使用gitee从github导入springboot
  • 克隆项目到本地

构建springboot 2.x

  • 找到clone的项目并进入项目的根目录
    在这里插入图片描述

  • 【可选】编辑pom.xml,在15行加上<disable.checks>true</disable.checks>
    在这里插入图片描述

  • 【可选】打开settings-template.xml,配置阿里镜像源加速依赖的下载

<mirrors>
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
</mirrors>

在这里插入图片描述

  • mvn clean install -DskipTests -Pfast 构建springboot项目
    幸运的话会直接构建成功

问题: 构建缓慢

解决方案:

  • 配置镜像源(setting.xml/settings-template.xml)

问题:spring-boot-gradle-plugin报错

[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.6.0:exec (gradle) on project spring-boot-gradle-plugin: Command execution failed.: Process exited with an error: 1 (Exit value: 1) -> [Help 1]

在这里插入图片描述

解决方案
根据提示,继续输入
mvn clean -rf :spring-boot-gradle-plugin

为避免等待,可以通过下面的方式进行构建

  1. mvn clean -rf :spring-boot-gradle-plugin
  2. mvn clean install -DskipTests -Pfast

导入Idea

打开idea,选择open,找到刚刚构建的目录
在这里插入图片描述
打开后会等一会儿才能在idea中初始化完毕,因为需要加载依赖。

问题 :idea导入springboot项目后没有反应或者反应缓慢

解决方案

  • 检查maven设置,配置本地的仓库和settings.xml文件
    在这里插入图片描述
  • 重启IDEA,选择maven-> reimport
    在这里插入图片描述

参考

  • https://www.cnblogs.com/darklights/p/12381970.html
  • https://blog.csdn.net/bskfnvjtlyzmv867/article/details/89434894

最后

以上就是饱满水蜜桃为你收集整理的springboot 2.x 构建遇到的问题和解决方案的全部内容,希望文章能够帮你解决springboot 2.x 构建遇到的问题和解决方案所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(27)

评论列表共有 0 条评论

立即
投稿
返回
顶部