springboot 开启热部署

一、添加热部署依赖


		
			org.springframework.boot
			spring-boot-devtools
			true
		

二、添加配置文件

#热部署生效
spring.devtools.restart.enabled= true
#设置重启的目录
#spring.devtools.restart.additional-paths: src/main/java
#classpath目录下的WEB-INF文件夹内容修改不重启
#spring.devtools.restart.exclude: static/**


你可能感兴趣的:(springboot热部署,java,Util)