其他分享
首页 > 其他分享> > 非常简单的SpringBoot 在STS中实现热部署

非常简单的SpringBoot 在STS中实现热部署

作者:互联网

1、pom.xml文件添加devtools依赖包


		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-devtools</artifactId>
			<scope>runtime</scope>

            <!-- 依赖不会传递,其他项目想要使用devtools, 需要重新引入 -->
			<optional>true</optional>
		</dependency>

2、application.properties  文件配置

#热部署
#thymeleaf不缓存,即时刷新,页面修改后会立即生效
spring.thymeleaf.cache=false
#开启devtools
spring.devtools.restart.enabled=true
#监听目录
spring.devtools.restart.additional-paths=src/main/java

 

标签:非常简单,SpringBoot,spring,boot,thymeleaf,STS,devtools,true,restart
来源: https://blog.csdn.net/weixin_43653670/article/details/110938451