2 Star 6 Fork 2

Ksnow / magic-api-plugin-config

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

magic-api-plugin-config

介绍

  • 用于magic-api 的配置文件插件
  • 支持在线添加并热加载配置文件
  • 对env对象扩展,支持代码中动态插入配置

部署步骤

maven编译

 mvn clean install

pom引入

<!-- 配置文件 -->
<dependency>
    <groupId>cn.luow</groupId>
    <artifactId>magic-api-plugin-config</artifactId>
    <version>2.0.0</version>
</dependency>

使用说明

给需要热加载配置的类添加注解@RefreshScope

@Service
@RefreshScope
public class TestService {
  @Value("${test}")
  private String test;

  @Value("${testArr}")
  private List<String> testArr;

  public String getTest() {
    return test;
  }

  public List<String> getTestArr() {
    return testArr;
  }
}

创建一个配置文件,添加相关配置,勾上启用后保存

测试配置文件是否生效

#脚本中动态配置

env.set("test","testSet");

var yml = """
test : testYmal
test1:
    test2: 123
test3:
    test2:
        - 12
        - 123
        - 12314
"""
env.setYaml(yml,"testYaml");
  • 配置文件刷新需要时间,并不是实时的
  • 配置文件拥有覆盖性,后加载的覆盖之前的
  • 后加载的配置禁用之后,之前被覆盖的配置依旧会生效
MIT License Copyright (c) 2022 Ksnow Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

用于magic-api 的配置文件插件 支持在线添加并热加载配置文件 对env对象扩展,支持代码中动态插入配置 展开 收起
Java 等 3 种语言
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
Java
1
https://gitee.com/KS_snow/magic-api-plugin-config.git
git@gitee.com:KS_snow/magic-api-plugin-config.git
KS_snow
magic-api-plugin-config
magic-api-plugin-config
master

搜索帮助