springboot热更新

Posted 博客首页

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot热更新相关的知识,希望对你有一定的参考价值。

在代码开发过程中 经常需要在不重启项目的情况下 动态更新代码或者配置文件

下面我们来看看 具体应该怎么操作

pom.xml

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtool</artifactId>
</dependency>

 

配置文件 application.properties

server.port:8080
url:http://localhost

  

WebController

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.env.Environment;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class WebController {
    @Autowired
    private Environment env;

    @RequestMapping("/getUrl")
    public String test(){
        return env.getProperty("url");
    }

}

 

以这种方式同样可以更新代码

 

以上是关于springboot热更新的主要内容,如果未能解决你的问题,请参考以下文章

spring boot apollo 热加载 重启

SpringBoot热部署

Springboot2.x最全整合系列(持续更新)

springboot热部署

SpringBoot部署测试与监控

利用 jrebel 热部署远程调试远程热部署 springboot项目 服务器上的代码