请将你的Spring Boot版本 替换为你项目中实际使用的 Spring Boot 版本号。 检查Maven 的本地仓库: 确认Maven 的本地仓库(通常位于用户目录下的 .m2/repository)中是否存在 spring-boot-maven-plugin 的相关文件。如果不存在,可能是 Maven 在下载时遇到了问题。此时,你可以尝试删除本地仓库中的 org/springframewor...
如果有冲突,你需要解决这些冲突,或者尝试升级或降级spring-boot-maven-plugin的版本。 检查Maven仓库配置:确保你的Maven仓库配置正确。有时候,Maven可能无法从中央仓库下载插件,这可能是由于网络问题或仓库配置错误导致的。你可以检查settings.xml文件中的仓库配置,确保没有错误。 清理Maven本地仓库:有时候,Maven本地仓库...
通过分析,可以总结如下: spring-boot-maven-plugin没有设置version,它会先去远程仓库找最新的版本,然后download到本地,然后完成maven操作等。但是远程仓库里没有相应的jar包,导致执行maven编译出错。因为远程仓库里已经有了最新版本的路径,它就不会使用已经存在的版本。 解决: 给spring-boot-maven-plugin指定具体的versi...
④. 为了不让每个项目都如此烦所的加上③那段代码,我已在系统的maven下的settings.xml里做了手脚,代码如下: <profiles> <profile> <id>spring plugins</id> <activation> <jdk>spring plugins</jdk> </activation> <pluginRepositories> <pluginRepository> <id>spring plugins</id> <name>Spring plugins</nam...
基于SpringBoot框架开发的代码,打包时默认将配置文件等信息全部打包进一个JAR包中,当仅仅需要修改配置文件时就变的比较麻烦,那怎么办呢?通过assembly则可以解决该问题。 具体步骤 ①. 新增打包插件 <plugin> <!-- 添加MAVEN提供的ASSEMBLY插件,默认使用spring-boot-maven-plugin打包,将项目所有的依赖打入到项目的JAR包...
找不到插件 'org.springframework.boot:spring-boot-maven-plugin:' 爆红: 搞定: 打包后也可以正常运行了:
boot:spring-boot-maven-plugin:1.5.6.RELEASE:run (default-cli) on project springboot_demo:
[INFO] <<< spring-boot-maven-plugin:2.0.4.RELEASE:run (default-cli) < test-compile @ admin-aggregator <<< [INFO] [INFO] --- spring-boot-maven-plugin:2.0.4.RELEASE:run (default-cli) @ admin-aggregator --- [WARNING] java.lang.ClassNotFoundException: com.sounds.bvs.AdminRestApp ...
当我们在构建SpringBoot项目时,有时候会出现spring-boot-maven-plugin爆红的问题。 原因是因为springboot自动配置时没有识别到这个插件的版本。 解决办法:文章标签: Java 关键词: XML文件 Spring found Maven found 文件Maven XML found 游客lcphdwrjg5m2k +关注 2文章 0 0 0 1 评论 登录后可评论 vohelon...