第一步:添加springboot的配置文件

首先我先贴出我的配置

  • 添加依赖包
<!-- spring boot devtools 依赖包. -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>true</scope>
</dependency>
  • 添加插件
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!-- 如果没有该项配置,devtools不会起作用,即应用不会restart -->
<fork>true</fork>
</configuration>
</plugin>

具体配置文件应该防止的位置为


使用IDEA 中 实现springboot 热部署 (spring boot devtools版)-LMLPHP


需要import的同学记得import 。 
使用IDEA 中 实现springboot 热部署 (spring boot devtools版)-LMLPHP


任意修改源代码 并且 Ctrl+F9 bulid

但是在eclipse中 项目是会自动编译的 但是在IDEA 中 我们需要 按ctrl+F9 让它再编译一下


原理介绍

05-14 01:59