SpringBoot的热部署

项目中引入依赖 (每次搭建项目都需要引入)

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-devtools</artifactId>
   <optional>true</optional>
</dependency>

设置idea中支持自动编译

# 1.开启自动编译

	Preferences | Build, Execution, Deployment | Compiler -> 勾选上 Build project automatically 这个选项

# 2.开启允许在运行过程中修改文件
	ctrl + alt + shift + / ---->选择1.Registry ---> 勾选 compiler.automake.allow.when.app.running 这个选项
        idea2021版本直接在 settings 里的 advanced settings 里勾选

启动springboot里日志的Main变成restartedMain即完成

上一篇:Sublime Text 设置文件头模板


下一篇:IDEA配置