共计 524 个字符,预计需要花费 2 分钟才能阅读完成。
基于 IDEA 的热加载。
在 pom.xml 中增加相应的依赖
<!-- 热加载 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<!--<scope>true</scope>-->
</dependency>
在 pom.xml 中增加相应的插件
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork><!-- 如果没有该配置,热部署的 devtools 不失效 -->
</configuration>
</plugin>
设置 IDEA
ctrl+shit+alt+/ 快捷键并点击 Registry
mac 快捷键 command+shit+option+/ 快捷键并点击 Registry
找到如下图对应的 Key 并勾选
依照如上所述步骤即可开启 IDEA 开发 spring 热加载性能。
正文完
发表至: springboot
2020-11-11