当前位置: 代码迷 >> 综合 >> SpringBoot2.X结合dev-tool 实现IDEA项目热部署
  详细解决方案

SpringBoot2.X结合dev-tool 实现IDEA项目热部署

热度:54   发布时间:2023-10-12 19:05:59.0
  • pom文件添加依赖包
  • <dependency>  <groupId>org.springframework.boot</groupId>  <artifactId>spring-boot-devtools</artifactId>  <optional>true</optional>  </dependency><build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><configuration><fork>true</fork><!--必须添加这个配置--></configuration></plugin></plugins>
  • idea 里面配置自动编译

SpringBoot2.X结合dev-tool 实现IDEA项目热部署

使用快捷键打开,选择Registry

mac快捷键 Shift+Command+Alt+/

SpringBoot2.X结合dev-tool 实现IDEA项目热部署

选择compiler.automake.allow.when.app.running ,重启idea就行!!!

SpringBoot2.X结合dev-tool 实现IDEA项目热部署

  相关解决方案