idea设置Springboot项目修改html后不需要重启
Posted 『天堂有路』
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea设置Springboot项目修改html后不需要重启相关的知识,希望对你有一定的参考价值。
idea 2.5 spingboot 2.1 测试通过,方法如下:
在pom.xml中加入下面的依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
“File” -> “Settings” -> “Build,Execution,Deplyment” -> “Compiler”,选中打勾 “Build project automatically” 。
组合键:“Shift+Ctrl+Alt+/” ,选择 “Registry” ,选中打勾 “compiler.automake.allow.when.app.running”。
搞定!!!
以上是关于idea设置Springboot项目修改html后不需要重启的主要内容,如果未能解决你的问题,请参考以下文章
idea复制springboot的maven项目后,修改了maven名称,但maven工具里的maven名称没改变,不生效
Intellij IDEA 设置Spring Boot热部署