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

Spring boot热部署devtools过程解析

程序员文章站 2022-09-24 14:15:21
1 pom.xml文件注:热部署功能spring-boot-1.3开始有的 org.springf...

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)”

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。