关键点

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>

相关文章:

  • 2021-11-04
  • 2022-12-23
  • 2021-06-09
  • 2022-01-01
  • 2021-09-06
  • 2022-12-23
  • 2021-03-30
猜你喜欢
  • 2022-01-08
  • 2021-11-12
  • 2022-01-31
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-09
相关资源
相似解决方案