springboot-热部署

Posted 小e老师

tags:

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

使用springboot结合dev-tool工具

1.添加依赖

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

2如图,在设置中打开即可。

按快捷键 Shift+Ctrl+Alt+/ ,打开maintenance面板, 选择 Registry

3配置

  • 不被热部署的文件
/META-INF/maven, /META-INF/resources, /resources, /static, /public, or /templates
  • 指定文件不进行热部署
spring.devtools.restart.exclude=static/,public/
  • 手工触发重启
spring.devtools.restart.trigger-file=trigger.txt

改代码不重启,通过一个文本去控制

4注意点

生产环境不要开启这个功能,如果用java -jar启动,springBoot是不会进行热部署的

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

利用 jrebel 热部署远程调试远程热部署 springboot项目 服务器上的代码

在SpringBoot中使用热部署(DevTools)

idea内springboot项目设置热部署

SpringBoot入门篇--热部署

SpringBoot------热部署(Springloaded)

IDEA-SpringBoot项目设置热部署