当前位置:网站首页>如何开启热部署Devtools
如何开启热部署Devtools
2022-08-10 03:11:00 【冰点契约丶】
- 导入依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
- 引入pom插件
<build>
<finalName>你自己的工程名字</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
<addResources>true</addResources>
</configuration>
</plugin>
</plugins>
</build>
- 开启自动配置

- 更新注册表: ctrl +shift+alt+/

- 重启
边栏推荐
猜你喜欢
随机推荐
从零开始配置 vim(10)——快捷键配置
flex 的 三个参数:flex-grow、flex-shrink、flex-basis
WPF 实现更换主题色
(十四)时间延时任务及定时任务
金融口译,口译中金融高频词有哪些
Example 047: Functions Swap Variables
过水滑环的结构和工作原理
Research on IC enterprises
线程和线程间通信(C语言)
Robust Real-time LiDAR-inertial Initialization (Real-time Robust LiDAR Inertial Initialization) Paper Learning
It's almost 35, still "did a little"?What happened to the test workers who had been in the industry for a few years?
清洁环保的小型风电滑环基本介绍
基础理解网络模型
NFG电商系统在元宇宙趋势下做什么?
快35了,还在“点点点”?那些入行几年的测试点工后来都怎么样了?
一文教会你快速上手 Vim
The so-called software testing ability is actually these 5 points
socket编程基础
Evaluation and Construction of Enterprise Network Security Capability from the Sliding Ruler Model
HackTheBox——Beep









