eclipse_spring-boot热部署

转载自:WXC的春夏秋冬

https://www.cnblogs.com/xiangchun/p/8442487.html

Eclipse Spring boot项目热部署

spring boot项目 热部署

一,参考文档:springboot 热部署

note:

1.使用eclipse: project-->Build Automatically (选中)

2.DigitalTwin项目使用Springboot版本为:1.2.3.RELEASE,使用spring-boot-devtools无效. 查看Spring-boot-devtools,最低版本为1.3.0. 猜测Springboot整合Spring-boot-devtools最低版本为1.3.03.把SpringLoaded放入spring-boot-maven-plugin中,会导致端口占用,需要用控制面板关闭java程序,所有不推荐

二.3种方式的使用

1.使用springloaded 放入spring-boot-maven-plugin中(端口会被占用,不推荐)

在pom文件添加依赖

org.springframework.bootspring-boot-maven-pluginorg.springframeworkspringloaded1.2.6.RELEASE

2.spring-boot-devtools(Springboot 版本为1.3.0以上,推荐)

添加pom文件依赖

org.springframework.bootspring-boot-devtoolstrue

如果我们想指定让 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

你可能感兴趣的:(eclipse_spring-boot热部署)