当前位置:主页 > >

springboot项目idea热部署的教程详解

时间:2020-08-13 10:00:09 | 栏目: | 点击:

1.添加依赖

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

2.开启自动编译

3.ctrl+shifi+alt+/

点击registry

选择compiler autoMake allow when app running

接下来在你进行项目修改切换到浏览器时就会发现springboot重新加载了

4.排除热部署范围

将不需要热部署的路径定义到配置文件中

spring.devtools.restart.exclude=static/**,public/**

总结

您可能感兴趣的文章:

相关文章