Springboot在intelliJ中使用热部署配置不生效的解决办法

首先要在Maven的pom.xml文件中添加依赖



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

如果是Eclipse,配置到这里,只要重启服务,热部署就会生效了  

使用Intellij的话需要在Build,Execution,Deployment下找到Compiler 勾选  Build  project automatically,如图

Springboot在intelliJ中使用热部署配置不生效的解决办法_第1张图片

这时候还没完,还需要我们按住Ctrl+Shift+Alt+/ 弹出窗口选择Registry..

Springboot在intelliJ中使用热部署配置不生效的解决办法_第2张图片

然后勾选 compiler.automake.allow.when.app.running 

Springboot在intelliJ中使用热部署配置不生效的解决办法_第3张图片

ok  这样在Intellij中Spring boot就可以热部署了

你可能感兴趣的:(Server)