SpringBoot--手写组件动态更新@Value的值

原文网址:SpringBoot--手写组件动态更新@Value的值_IT利刃出鞘的博客-CSDN博客

简介

本文手写组件,动态更新SpringBoot里@Value的值(无需重启服务)。

不是可以用@RefreshScope吗?为什么要手写组件?

动态更新配置属性其实有四种方式:

  1. @RefreshScope
    1. 详见:此文
  2. 用类表示配置。
    1. 详见:此文
  3. ApplicationContext
    1. 方法:ApplicationContextHolder.getContext().getEnvironment().getRequiredProperty(key);
    2. ApplicationContextHolder见:SpringBoot-静态获得Bean的工具类 - 自学精灵
  4. 本文组件。

这四种方式的对比:

|--------------|---------------------------------------------------------------------------------------------------|---------------------|------------------------|----------|
| 比较项 | @RefreshScope | 用类表示配置 | ApplicationContext | 本文组件 |
| 启动时检查空值 | 是 (没配置会报错,能及时发现问题) | 否 (没配置不报错,无法及时发现问题) | 否 | 是 |
| 是否有失效的情况 | 是 详见: 这里。 | 否 | 否 | 否 |
| 易用性 | ☆☆☆☆☆ | ☆☆☆ | ☆☆ | ☆☆☆☆☆ |

从上边可以发现,本文组件是最完美的

结果展示

Controller代码

java 复制代码
package com.knife.example.business.product.controller;

import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@Api(tags = "商品")
@RestController
@RequestMapping("product")
public class ProductController {
    @Value("${key1:aa}")
    private String key1;

    @ApiOperation("测试")
    @GetMapping("detail")
    public String detail() {
        return key1;
    }
}

测试

访问:http://localhost:8080/doc.html

修改Nacos,将key1改为bb,不重启应用。

再次请求:(可见,已经自动更新啦)

代码

上边是文章的部分内容,为便于维护,全文已转移到此地址:手写组件动态更新@Value的值 - 自学精灵

相关推荐
y***61311 天前
SpringBoot集成Flowable
java·spring boot·后端
i***58671 天前
springcloud springboot nacos版本对应
spring boot·spring·spring cloud
烤麻辣烫1 天前
黑马程序员苍穹外卖(新手)DAY6
java·开发语言·学习·spring·intellij-idea
s***38561 天前
SpringBoot中如何手动开启事务
java·spring boot·spring
i***22071 天前
springboot整合libreoffice(两种方式,使用本地和远程的libreoffice);docker中同时部署应用和libreoffice
spring boot·后端·docker
q***61411 天前
Spring中Aware的用法以及实现
java·数据库·spring
代码or搬砖1 天前
SpringMVC的执行流程
java·spring boot·后端
Appreciate(欣赏)1 天前
JAVA使用poi类读取xlxs文件内容拼接成添加数据SQL
java·开发语言·sql
极光代码工作室1 天前
基于SpringBoot的流浪狗管理系统的设计与实现
java·spring boot·后端