idea+spring-boot+devtools热部署

maven dependencies增加
 
  

	org.springframework.boot
	spring-boot-devtools
	true


project增加
 
  

	
		
			org.springframework.boot
			spring-boot-maven-plugin
			
			
				true
			
		
	

idea设置
 
  
 
  
ctrl+shift+alt+/
 
  
 
  
 
  
 
  
springboot 配置文件增加不需要restart的目录 
spring.devtools.restart.exclude=config/**,static/**,templates/**
将启动config中的before的make删除

重启项目即可。


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