idea springboot热部署无效问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea springboot热部署无效问题相关的知识,希望对你有一定的参考价值。
Intellij IDEA 使用Spring-boot-devTools无效解决办法
springboot项目中遇到的bug
<dependencies> <!--spring boot 热加载--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional><!-- optional=true,依赖不会传递,该项目依赖devtools;之后依赖myboot项目的项目如果想要使用devtools,需要重新引入 --> </dependency> </dependencies> <build> <plugins> <!--spring boot 打包插件--> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <mainClass>com.hjzgg.test.thirdjar.Application</mainClass> <fork>true</fork> </configuration> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
以上是关于idea springboot热部署无效问题的主要内容,如果未能解决你的问题,请参考以下文章
IDEA中Spring boot配置热部署无效问题解决方式(转)