nacos通过api,读取和发布配置中心配置文件

String writerUrl = "http://127.0.0.1:8848/nacos/v1/cs/configs"
Map<String, String> param = new HashMap<>(6);
// 租户信息,对应 Nacos 的命名空间ID字段。
param.put("tenant", "namespace");
param.put("dataId", dataId);
param.put("group", group);
// 配置类型 
param.put("type", "properties");
// 配置内容,读取配置的时候可以不要该参数
param.put("content", "XXXX");
try {
// 读取配置用GET方法
    String s = HttpUtils.requestGet(writerUrl, param, null);
    System.out.println(s);
// 写入配置,发布配置,用POST方法
	String s = HttpUtils.requestGet(writerUrl, param, null);
    System.out.println(s);
} catch (RemoteServiceException e) {
    e.printStackTrace();
}
GitHub 加速计划 / na / nacos
123
24
下载
Nacos是由阿里巴巴开源的服务治理中间件,集成了动态服务发现、配置管理和服务元数据管理功能,广泛应用于微服务架构中,简化服务治理过程。
最近提交(Master分支:4 个月前 )
762303b9 * [ISSUE #12970] Fix NamingMetadataManager.removeInstanceMetadata() error fix #12970 * Update NamingMetadataManagerTest.java 4 天前
05561813 * fix type search on mysql model * 灰度模型迁移程序并发&迁移不落历史表 * Config migrate executor times * 1.Config migrate executor times 2. history comparation optimize * 1.Config migrate executor times 2. history comparation optimize * checkstyle 4 天前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐