欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring boot热部署

程序员文章站 2024-02-02 12:46:40
...
加入依赖
     <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <optional>true</optional>
     </dependency>
 

spring boot热部署

在intelij中ctrl+alt+shift+/ 选择register

spring boot热部署

修改application.yml配置

spring
    devtools:
    restart:
        #需要实时更新的目录
      additional-paths: resources/**,static/**,templates/**

 

相关标签: java spring boot