服务器之家

服务器之家 > 正文

Intellij IDEA实现springboot热部署过程解析

时间:2020-08-31 00:02     来源/作者:Auler

对于springboot热部署貌似是这样的,首先要设置idea相关配置

导航栏 File -> Settings -> Build,Execution,Deployment -> Compiler 选择Build project automatically 打勾 如下图所示

Intellij IDEA实现springboot热部署过程解析

接着Ctrl+Shift+Alt+/ 快捷键选择Registry会弹出如下图

Intellij IDEA实现springboot热部署过程解析

在红色选择的一行打勾,就完成了这步骤。

接着开始配置pom.xml文件

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<dependencies>
<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-devtools</artifactId>
  <optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
  <!-- springboot maven plugin -->
  <plugin>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-maven-plugin</artifactId>
   <configuration>
     <!--fork : 如果没有该项配置,肯定devtools不会起作用,即应用不会restart -->
     <fork>true</fork>
   </configuration>
  </plugin>
</plugins>
 
</build>

pom文件也配置好了,就开始配置application.yml (或者 application.properties)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#THYMELEAF
spring:
 thymeleaf:
  cache: false #这里一定要设置false
  prefix: classpath:/thymeleaf/
  suffix: .html
  mode: HTML5
  encoding: UTF-8
 devtools:
   restart:
     #热部署生效true
     enabled: true
     #设置重启的目录
     additional-paths: resources/**,static/**,templates/**
     #该目录下的内容修改不重启
    exclude: data/**

配置完之后,基本上就可以运行了,还有最后要记得浏览器要设置 禁止缓存

Intellij IDEA实现springboot热部署过程解析

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

原文链接:https://www.cnblogs.com/zrl66/p/11423599.html

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
最新idea2020注册码永久激活(激活到2100年)
最新idea2020注册码永久激活(激活到2100年) 2020-07-29
iPhone12什么时候上市 iPhone12手机真实图片 苹果iphone12多少钱
iPhone12什么时候上市 iPhone12手机真实图片 苹果iphone12多少钱 2020-06-03
返回顶部