博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IDEA中Spring boot配置热部署无效问题解决方式(转)
阅读量:5160 次
发布时间:2019-06-13

本文共 789 字,大约阅读时间需要 2 分钟。

IDEA中Spring boot配置热部署无效问题解决方式

该配置方式属于通过配置devtools实现热部署

只要在pom文件中添加下面代码段即可

org.springframework.boot
spring-boot-devtools
true
true
----------------------------------------------------
org.springframework.boot
spring-boot-maven-plugin
true
true

但是配置好无效,下面需要修改idea中的两个配置

  1. setting –> compiler
    将 Build project automatically 勾选上
  2. alt + shift + a 搜索 registry 选第一个,弹出框后下拉找到 compiler.automake.allow.when.app.running 勾选上即可。

热部署无效问题已解决。

转载于:https://www.cnblogs.com/yasepix/p/9015774.html

你可能感兴趣的文章
查询数据库锁
查看>>
面试时被问到的问题
查看>>
注解小结
查看>>
201421410014蒋佳奇
查看>>
Xcode5和ObjC新特性
查看>>
CSS属性值currentColor
查看>>
Real-Time Rendering 笔记
查看>>
多路复用
查看>>
处理程序“PageHandlerFactory-Integrated”在其模块列表中有一个错误模块“Manag
查看>>
利用SignalR来同步更新Winfrom
查看>>
反射机制
查看>>
CocoaPod
查看>>
BZOJ 1251: 序列终结者 [splay]
查看>>
5G边缘网络虚拟化的利器:vCPE和SD-WAN
查看>>
MATLAB基础入门笔记
查看>>
【UVA】434-Matty's Blocks
查看>>
Android开发技术周报 Issue#80
查看>>
hadoop2.2.0+hive-0.10.0完全分布式安装方法
查看>>
django知识点总结
查看>>
C++ STL stack、queue和vector的使用
查看>>