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

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

程序员文章站 2022-06-23 23:27:24
1.添加依赖 org.springframework.boot

1.添加依赖

 <dependency>
      <groupid>org.springframework.boot</groupid>
      <artifactid>spring-boot-devtools</artifactid>
      <optional>true</optional>
      <scope>true</scope>
    </dependency>

2.开启自动编译

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

3.ctrl+shifi+alt+/

点击registry

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

选择compiler automake allow when app running

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

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

4.排除热部署范围

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

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

总结

到此这篇关于springboot项目idea热部署的文章就介绍到这了,更多相关springboot项目idea热部署内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!