springboot使用dev-tool实现热部署

学习目标
步骤:
pom文件里添加依赖包

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

IDEA进行配置:
idea里面要设置,window和mac一样
springboot使用dev-tool实现热部署_第1张图片

	使用快捷键
		windos快捷键  Shift+Ctrl+Alt+/ 
		mac快捷键  Shift+Cammand+Alt+/
		如果自行修改默认快捷键,自行搜索百度查看相关资料修改!!!

springboot使用dev-tool实现热部署_第2张图片

选择compiler.automake.allow.when.app.running 然后重启idea

springboot使用dev-tool实现热部署_第3张图片

	**这里需要注意启动项目修改代码,需要Ctrl+s保存下才会有效果!!!**

你可能感兴趣的:(后端,spring,boot,intellij-idea,java)