spring boot项目 热部署
一,参考文档:springboot 热部署
note:
1.使用eclipse: project-->Build Automatically (选中)
2.Digital Twin 项目使用Spring boot 版本为:1.2.3.RELEASE,使用spring-boot-devtools无效. 查看Spring-boot-devtools,最低版本为1.3.0. 猜测Spring boot 整合Spring-boot-devtools最低版本为1.3.0
3.把SpringLoaded放入spring-boot-maven-plugin中,会导致端口占用,需要用控制面板关闭java程序,所有不推荐
二.3种方式的使用
1.使用springloaded 放入spring-boot-maven-plugin中(端口会被占用,不推荐)
在pom文件添加依赖
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>springloaded</artifactId>
<version>1.2.6.RELEASE</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
2.spring-boot-devtools(Springboot 版本为1.3.0以上,推荐)
添加pom文件依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional> <!-- 这个需要为 true 热部署才有效 -->
</dependency>
如果我们想指定让 devtools 监听指定文件夹,那么可以在 application.yml 配置
spring.devtools.restart.additional-paths=your path
3.使用springloaded ,下载springloaded常用版本(如:springloaded-1.2.3.RELEASE.jar)放入指定路径下(推荐)
启动项目:Application文件-->run as--> Run configurations...-->Arguments-->VM arguments
-javaagent:D:/javasoft/springloaded-1.2.3.RELEASE.jar -noverify
原文地址:https://www.cnblogs.com/xiangchun/p/8442487.html
时间: 2024-10-03 11:14:24