IDEA中Spring boot配置热部署
Posted Xiaox-xin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA中Spring boot配置热部署相关的知识,希望对你有一定的参考价值。
pom文件中添加
1 <!-- 热部署 --> 2 <dependency> 3 <groupId>org.springframework.boot</groupId> 4 <artifactId>spring-boot-devtools</artifactId> 5 <optional>true</optional> 6 <scope>true</scope> 7 </dependency> 8 ---------------------------------------------------- 9 <build> 10 <plugins> 11 <plugin> 12 <groupId>org.springframework.boot</groupId> 13 <artifactId>spring-boot-maven-plugin</artifactId> 14 <configuration> 15 <!-- 没有该配置,devtools 不生效 --> 16 <fork>true</fork> 17 <addResources>true</addResources> 18 </configuration> 19 </plugin> 20 </plugins> 21 </build>
file-》settings-》build,execution,deployment-》Compiler
alt + shift + a 搜索 registry 选第一个
弹出框后下拉找到 compiler.automake.allow.when.app.running 勾选上即可
以上是关于IDEA中Spring boot配置热部署的主要内容,如果未能解决你的问题,请参考以下文章