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

spring boot devtools在Idea中实现热部署方法

程序员文章站 2023-08-13 20:25:39
1 pom.xml文件 注:热部署功能spring-boot-1.3开始有的 &...

1 pom.xml文件

注:热部署功能spring-boot-1.3开始有的

<!--添加依赖-->
<dependency>
 <groupid>org.springframework.boot</groupid>
 <artifactid>spring-boot-devtools</artifactid>
 <!-- optional=true,依赖不会传递,该项目依赖devtools;之后依赖myboot项目的项目如果想要使用devtools,需要重新引入 -->
 <optional>true</optional>
</dependency>

注:project 中添加 spring-boot-maven-plugin,主要在eclipse中使用,idea中不需要添加此配置。

<build>
 <plugins>
  <plugin>
   <groupid>org.springframework.boot</groupid>
   <artifactid>spring-boot-maven-plugin</artifactid>
   <configuration>
    <fork>true</fork>
   </configuration>
  </plugin>
 </plugins>
</build>

2 更改idea配置

  1) “file” -> “settings” -> “build,execution,deplyment” -> “compiler”,选中打勾 “build project automatically” 。

  2) 组合键:“shift+ctrl+alt+/” ,选择 “registry” ,选中打勾 “compiler.automake.allow.when.app.running” 。

3 chrome禁用缓存

  f12或者“ctrl+shift+i”,打开开发者工具,“network” 选项卡下 选中打勾 “disable cache(while devtools is open)”

总结

以上所述是小编给大家及时的spring boot devtools在idea中实现热部署方法,希望对大家有所帮助