IDEA中实现springboot热部署

热部署: 每一次修改代码后会自动更新,无需每次重启

依赖(pom.xml)

修改后记得Reload一下

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <scope>runtime</scope>
    <optional>true</optional>
</dependency>

application.properties

# 热部署
spring.devtools.restart.enabled=true

settings

  1. 搜索Compiler,勾选Build project automatically
    在这里插入图片描述

  2. Advanced Settings->勾选Allow auto-make to start even if developed application is currently running
    在这里插入图片描述

加快热部署速度

现在SpringBoot就可以自动热部署了,效果还不错,但是感觉速度有点慢。
settings->Languages & Frameworks->Spring->Spring Boot
设置Refresh health in the Actuator tab ewver为1
在这里插入图片描述

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部