我是靠谱客的博主 犹豫音响,最近开发中收集的这篇文章主要介绍IntellijIDEA设置实现spring boot 热重启,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

设置spring boot 热重启之后,idea会自动监听代码的改动,发现改动之后会自动编译,无需手动重启就能看到修改之后的运行效果。
一:在maven里添加依赖

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope><!-- -->
<optional>true</optional>
</dependency>

二:在settings(ctrl +alt+s) -> Build,Execution,Deployment -> compiler, 添加"Build project automatically"

三:使用快捷键ctrl+shift+a,然后输入registry,然后点击进入,勾选compiler.automake.allow.when.app.running

四:重启IntellijIDEA。

Note:不过经过我测试,一般修改代码一分钟左右才会自动编译,反应比较慢…

最后

以上就是犹豫音响为你收集整理的IntellijIDEA设置实现spring boot 热重启的全部内容,希望文章能够帮你解决IntellijIDEA设置实现spring boot 热重启所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部