springspring boot 开启热部署

Posted Jack小强

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springspring boot 开启热部署相关的知识,希望对你有一定的参考价值。

开启热部署

1、pom添加

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

<build>
	<plugins>
		<plugin>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-maven-plugin</artifactId>
			<configuration>
				<!-- 如果没有该配置,devtools不会生效 -->
				<fork>true</fork>
				<!--支持静态文件热部署-->
				<addResources>true</addResources>
			</configuration>
		</plugin>
	</plugins>
</build>

2、Intellij IEDA开发工具
File->Setting->Build,…->Compiler 将右侧project automatically勾上

使用ctrl+shift+a 快捷键搜索Registry,选择搜索出来的第一个

找到compiler.automake.allow.when.app.running,勾上开启此功能即可

以上是关于springspring boot 开启热部署的主要内容,如果未能解决你的问题,请参考以下文章

Idea+Spring boot 开启热部署

springBoot开启热部署

开启热部署

IDEA中开启热部署

IDEA中开启热部署

SpringBoot项目在IDEA中开启热部署