spring boot热部署
Posted puroc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot热部署相关的知识,希望对你有一定的参考价值。
1、在pom文件中增加如下内容
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency>
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <fork>true</fork> </configuration> </plugin> </plugins> </build>
2、修改的代码需要重新编译,
build-->Recompile 或 build-->Rebuild Project
以上是关于spring boot热部署的主要内容,如果未能解决你的问题,请参考以下文章