Spring Boot Application Live Reload (Hot Swap) With IntelliJ IDEA
Spring Boot cung cấp một dependency
tải lại trực tiếp mà không cần khởi động lại cả chương trình:
1
2
3
4
5
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
Trong IntelliJ IDEA, mở File - > Settings… -> Build, Execution, Deployment -> Compiler và đảm bảo Build project automatically được kích hoạt. Build project automatically
Nhấn tổ hợp phím Ctrl + Shift + A > Registry…, kích hoạt cấu hình sau:
1
compiler.automake.allow.when.app.running
compiler.automake.allow.when.app.running
Khởi động lại IntelliJ IDEA là có thể sử dụng được!
Đọc thêm:
This post is licensed under CC BY 4.0 by the author.