亲宝软件园·资讯

展开

IDEA SpringBoot配置热更新 IDEA SpringBoot项目配置热更新的步骤详解(无需每次手动重启服务器)

肥宅不快乐 人气:4

IDEA SpringBoot项目配置热更新的步骤

1.在pom.xml中添加依赖:

<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-devtools</artifactId>
			<optional>true</optional>
		</dependency>

2.在pom.xml中添加插件:

<plugin>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-maven-plugin</artifactId>
			<configuration>
				<fork>true</fork>
			</configuration>
		</plugin>

3.在IDEA中打开 File → Settings,将 Compiler 中的 Build project automatically 勾选,点击 Apply。

在这里插入图片描述

4.完成后重启SpringBoot即可实现项目热更新,更改代码后只需按Ctrl+F9即可重新编译,无需重启。

加载全部内容

相关教程
猜你喜欢
用户评论