自学内容网 自学内容网

Spring Boot之Spring-devtools热部署

1、导包

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

2、添加配置

#开启热部署
spring.devtools.restart.enabled=true
#热部署重新加载java下面类文件
spring.devtools.restart.additional-paths=src/main/java
#排除静态文件重新部署
spring.devtools.restart.exclude=static/**

3、IDEA勾选设置

Build、Execution、Deploymen ==》Compiler ==》勾选Build project automatically

4、IDEA勾选设置

  • 按Ctrl+Shift+Alt+/
  • 选择1. Registry…
  • 勾选 compiler.automake.allow.when.app.running

5、其他说明

  • Ctrl+F9 快捷键启动热部署(项目启动后,局部修改时使用)
  • 我自己测试的 步骤2和步骤4 不需要也能好使
  • SQL 语句、启动加载配置类、第三方库这三个热部署管理不到,还需重启项目
  • 参考链接

原文地址:https://blog.csdn.net/weixin_45476535/article/details/143825591

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!