我这里遇到的问题是:
- 引入了spring-boot-devtools,
- 设置了idea的自动编译
- 勾选了Registry中的complier.automake.allow.when.app.running后均无效
<mark style="box-sizing: border-box; outline: 0px; background-color: rgb(248, 248, 64); color: rgb(0, 0, 0); overflow-wrap: break-word;">SpringBoot版本:2.1.6.RELEASE</mark>
如何解决:
在application.yml配置文件中加入如下配置即可:
(application.properties同理)
spring:
devtools:
restart:
# 设置热部署生效
enabled: true
# 设置重启目录
additional-paths: src/main/java
网友评论