Mac上Intellij IDEA使用spring-boot热部署

添加依赖



	org.springframework.boot
	spring-boot-devtools
	true

添加配置文件

配置文件中显示指定,默认值也是true,但是防止其他地方修改了默认值,所以,建议添加这个配置信息。

spring:
  devtools:
    restart:
      enabled: true

修改mac上的Intellij IDEA配置文件

第一、修改Compiler

mac上快捷键:Command + ,
Mac上Intellij IDEA使用spring-boot热部署_第1张图片

第二、修改Registry

mac上快捷键:Command + Shift + A
Mac上Intellij IDEA使用spring-boot热部署_第2张图片
勾选自动编译选项
Mac上Intellij IDEA使用spring-boot热部署_第3张图片

总结

重启启动应用服务后,对代码进行编辑,然后保存代码,将会触发自动编译过程。如果Intellij IDEA设置了自动保存,那么每当你的代码触发了自动保存功能,将会重启应用服务。如果没有设置自动保存功能,使用Command + s 保存文件,将会触发应用重启。

你可能感兴趣的:(Spring,Cloud)