microblog | 微博客
原创
访问
0
获赞
0
评论
相关推荐
暂无数据
最新文章
暂无数据
热门文章
暂无数据

springboot_springcloud项目热部署

写完bug就找女朋友 2022年02月28日 15:14:26 793 124 0
分类专栏: SpringCloud SpringBoot 文章标签: Spring SpringBoot 热部署

前言

      在开发springboot或者springcloud项目的时候修改代码以后经常要点击的就是充钱服务,这样既浪费时间,又浪费精力,如何解决这个问题呢?

解决办法

      步骤一

maven添加热部署依赖插件

<!--热部署依赖插件--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency>

      步骤二

设置IDEA 设置->Build->Compiler 然后选择上 Build project automatically 这个选项.如下图所示:

image.png
接下来就可以实时预览改变后的代码了。



评论区

登录后参与交流、获取后续更新提醒

目录
暂无数据