SpringBoot项目实现热部署的配置方法

SpringBoot项目实现热部署的配置方法

1、什么是热部署?

热部署,就是在应用正在运行的时候升级软件,却不需要重新启动应用。

2、什么是SpringBoot热部署?

SpringBoot热部署就是在项目正在运行的时候修改代码, 却不需要重新启动项目。

3、SpringBoot热部署的流程

1、pom文件中导入 spring-boot-devtools 依赖:

<dependency>
	<groupId>org.springframework.bootgroupId>
	<artifactId>spring-boot-devtoolsartifactId>
	<scope>runtimescope>
	<optional>trueoptional>
dependency>

2、继续在pom.xml中添加插件:

 <build>
 	<plugins>
 		<plugin>
     		<groupId>org.springframework.bootgroupId>
			<artifactId>spring-boot-maven-pluginartifactId>
     		<configuration>
				<fork>truefork>
				<addResources>trueaddResources>
     		configuration>
		plugin>
	plugins>
 build>

3、设置application.yaml

spring:
  devtools:
    restart:
      enabled: true

4、在idea中设置自动编译

首先ctrl+alt+s打开设置,搜索Compliler,勾选Build project automatically,如下图所示:

SpringBoot项目实现热部署的配置方法_第1张图片

5、按住ctrl + shift + alt + /,出现如下图所示界面,点击Registry...,如下图:

SpringBoot项目实现热部署的配置方法_第2张图片

点击进入后,勾选compiler.automake.allow.when.app.running后关闭即可。

SpringBoot项目实现热部署的配置方法_第3张图片

通过以上步骤,就完成了SpringBoot项目的热部署。

你可能感兴趣的:(spring,boot,spring,boot)