服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - Idea2022版本配置SpringBoot热部署的教程

Idea2022版本配置SpringBoot热部署的教程

2022-11-13 11:56haiqiang0225 Java教程

这篇文章主要介绍了Idea2022版本配置SpringBoot热部署的教程,包括添加依赖及更改IDEA设置的方法,本文图文实例相结合给大家介绍的非常详细,需要的朋友可以参考下

2022版本配置SpringBoot热部署

网上搜到的以前版本的都是更改Registry...,勾选compiler.automake.allow.when.app.running,然后新版的IDEA的Registry...里没有这个选项,最后找到了解决方案,亲测有效,链接如下:

ref: In IntelliJ 2021.2 compiler.automake.allow.when.app.running disappear. Unable to enable live reload under Spring boot

1.IDEA版本

Idea2022版本配置SpringBoot热部署的教程

2. 添加依赖

  • 如果只有一个项目,直接在pom.xml里添加下面所有的即可
  • 父项目pom.xml<project>标签内添加:
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<build>
       <plugins>
           <plugin>
               <groupId>org.springframework.boot</groupId>
               <artifactId>spring-boot-maven-plugin</artifactId>
               <version>2.6.4</version>
               <executions>
                   <execution>
                       <goals>
                           <goal>repackage</goal>
                       </goals>
                   </execution>
               </executions>
               <configuration>
                   <fork>true</fork>
                   <addResources>true</addResources>
               </configuration>
           </plugin>
       </plugins>
   </build>

子项目pom.xml<dependencie>标签内添加,注意要在父项目xml里定义版本:

?
1
2
3
4
5
6
<dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-devtools</artifactId>
          <scope>runtime</scope>
          <optional>true</optional>
      </dependency>

3.更改IDEA设置

preferences... -> Compiler

Idea2022版本配置SpringBoot热部署的教程

preferences... -> Advanced Settings -> Allow auto-make to start even if developed application is currently running

Idea2022版本配置SpringBoot热部署的教程

到此这篇关于Idea2022版本配置SpringBoot热部署的教程的文章就介绍到这了,更多相关idea配置springboot热部署内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/qq_19007335/article/details/124069635

延伸 · 阅读

精彩推荐