idea实现springboot热部署

Step 1:
添加pom文件依赖如下:

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

Step 2:
菜单栏File->Settings->Build,Execution,Deployment->Compiler->勾选上Build project automatically->Applay
idea实现springboot热部署_第1张图片
Step 3:
“Alt + Ctrl + Shift + /”:
idea实现springboot热部署_第2张图片
打开Registry:
idea实现springboot热部署_第3张图片
Step 4:

选择Application,右键运行应用即可

idea实现springboot热部署_第4张图片

你可能感兴趣的:(springboot,java)