springboot有3中热部署方式:
一、使用springloaded配置pom.xml文件,使用mvn spring-boot:run启动
二、使用springloaded本地加载启动,配置jvm参数
-javaagent:<jar包地址> -noverify
三、使用devtools工具包,操作简单,但是每次需要重新部署
具体配置方法:
1、在pom.xml中添加依赖
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!--devtools热部署-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>