作者:麦芽糖的-寂寞 | 来源:互联网 | 2023-09-18 19:13
Spring热部署的操作
前言
在实际开发工程中,每次修改代码都得将项目手动重启,手动部署,需要花费大量的时间吗。对于我来说,手动重启过程实在难受。以此我们将Spring项目配置热部署来自动重启。
步骤一:在pom.xml加入
org.springframework.bootspring-boot-devtoolstruetrueorg.springframework.bootspring-boot-maven-plugintrue
步骤二:在application.yml加入以下代码
spring:thymeleaf:cache: falsedevtools: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("热部署测试");
发现控制台在自动打印
如果有这一行代码代码开启热部署成功