Developer tools的使用
spring-boot-devtools默认情况下是阻止其使用缓存的。
引用
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
设置idea的配置
-
1.alt+ctrl+s 打开设置界面
image.png -
ctrl+ shift+a 搜索registry
image.png
-
禁用重启
再启动类中增加一行代码
public static void main(String[] args) {
System.setProperty("spring.devtools.restart.enabled", "false");
SpringApplication.run(MyApp.class, args);
}
大功告成
参看文献
1.https://blog.csdn.net/strong_yu/article/details/77563446
网友评论