SpringBoot热部署的操作
前言
在实际开发工程中,每次修改代码都得将项目手动重启,手动部署,需要花费大量的时间吗。对于我来说,手动重启过程实在难受。以此我们将Spring项目配置热部署来自动重启。
步骤一:在pom.xml加入
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>true</scope>
</dependency>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
</plugins>
</build>
步骤二:在application.yml加入以下代码
spring:
thymeleaf:
cache: false
devtools:
restart:
enabled: true #开启热部署
additional-paths: src/main/java #重启目录
freemarker:
cache: false #页面不加载缓存,修改即时生效
步骤三:修改idea里面的设置
开启划红线的地方
我这里是Eclipse的设置(Ctrl+Alt+T)打开Actions搜索
默认的是采用的idea的快捷键 ctrl + shift + alt + / ,选择Registry,勾上 Compiler autoMake allow when app running
打开Registy选项开启 compiler.automake.allow.when.app.running
步骤四:打开Run/Debug Configurations
添加spring-boot:run命令行
步骤五:运行
点击Run
测试结果
@GetMapping("/hello")
public String hello(@RequestParam(value = "name",defaultValue = "World")String name){
return String.format("Hello %s!",name);
}
加入一段代码
System.out.println("热部署测试");
发现控制台在自动打印
如果有这一行代码代码开启热部署成功