springboot-devtools实现项目的自动重启
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot-devtools实现项目的自动重启相关的知识,希望对你有一定的参考价值。
热部署的引入依赖:
<!-- 热部署 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> </dependency>
在application.properties文件中
1)添加 spring.devtools.restart.enabled= false
可以关闭SpringBoot的重启
2)添加 spring.devtools.restart.trigger-file=myRestartTrigger.my
在resources下新建myRestartTrigger.my(触发器文件)文件, 可以在进行一系列操作之后,在myRestartTrigger.my文件写1保存,即可实现自动重启
可参考:https://jingyan.baidu.com/article/4b07be3c91976e48b380f304.html
以上是关于springboot-devtools实现项目的自动重启的主要内容,如果未能解决你的问题,请参考以下文章