美文网首页
springboot 无法扫描导入的包

springboot 无法扫描导入的包

作者: 码二哥 | 来源:发表于2020-04-30 13:36 被阅读0次

1.spring-boot maven打包,一般pom.xml文件里会加

<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
这样打的jar里会多一个目录BOOT-INF。

2.引起问题,程序包不存在。

3.解决办法,如果A子模块包依赖了B子模块包,在B子模块的pom文件,加入

<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>

image
  1. 如果需要对导入的包,使用@Autowire注解的话,需要添加扫描注解
image image

相关文章

网友评论

      本文标题:springboot 无法扫描导入的包

      本文链接:https://www.haomeiwen.com/subject/goyzwhtx.html