【问题描述】: 项目为SpringBoot 项目多个 module依赖,对子模块进行 compile/install 时出现了依赖的类(此类是自己写的类)不存在。
文章来源:https://www.toymoban.com/news/detail-834228.html
【解决办法】: 将父工程中使用的 springboot插件注释掉,如下代码:文章来源地址https://www.toymoban.com/news/detail-834228.html
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
到了这里,关于Error:(x,x) java: 程序包com.xxx.xxx不存在的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!