maven打成jar包后,其他工程导入不进去
关键点
classifier中配置exec
pom文件配置
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!-- 配置此配置,其他工程才能正常引入jar包 -->
<classifier>exec</classifier>
<!-- 配置此项,与springboot的热部署一起使用,不配置则会不生效 -->
<fork>true</fork>
</configuration>
</plugin>
作者:经典鸡翅
微信公众号:经典鸡翅
如果你想及时得到个人撰写文章,纯java的面试资料或者想看看个人推荐的技术资料,可以扫描左边二维码(或者长按识别二维码)关注个人公众号)。