1. 程式人生 > >spring-boot-devtools在Idea中熱部署方法使用

spring-boot-devtools在Idea中熱部署方法使用

1、引入依賴

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <!-- optional=true,依賴不會傳遞,該專案依賴devtools;之後依賴myboot專案的專案如果想要使用devtools,需要重新引入 -->
    <optional>true</optional>
</dependency>

2、更改idea配置

  1) “File” -> “Settings” -> “Build,Execution,Deplyment” -> “Compiler”,選中打勾 “Build project automatically” 。
  這裡寫圖片描述

  2) 組合鍵:“Shift+Ctrl+Alt+/” ,選擇 “Registry” ,選中打勾 “compiler.automake.allow.when.app.running” 。
  這裡寫圖片描述
  這裡寫圖片描述