-
编写配置类
java@Component public class NacosConfig { public static String GROUP_ID ; public static String DATA_ID ; @Value("${nacos.gateway.route.config.group}") public void setGroupId(String groupId){ GROUP_ID = groupId ; } @Value("${nacos.gateway.route.config.data-id}") public void setDataId(String dataId){ DATA_ID = dataId ; } } -
properties添加配置
propertiesnacos.gateway.route.config.group=DEFAULT_GROUP nacos.gateway.route.config.data-id=hello-gateway-router.json -
自定义RouteDefinitionLocator
java@Slf4j @Component public class NcosRouteDefinitionLocator implements RouteDefinitionLocator, InitializingBean { private volatile List<RouteDefinition> routeDefinitions = new CopyOnWriteArrayList<>() ; @Autowired private NacosConfigManager nacosConfigManager ; @Autowired private ObjectMapper objectMapper ; @Autowired private ApplicationEventPublisher eventPublisher ; private ConfigService configService ; @Override public Flux<RouteDefinition> getRouteDefinitions() { return Flux.fromIterable(routeDefinitions); } @Override public void afterPropertiesSet() throws Exception { // 从nacos获取routDefinition configService = nacosConfigManager.getConfigService(); // 读取配置并装载 this.initNacosConfig(); // 添加listener,当数据变化时接收通知 this.initNacosListener(); } private void initNacosConfig(){ try { String content = configService.getConfig( NacosConfig.DATA_ID, NacosConfig.GROUP_ID, 3000L ); CollectionType collectionType = objectMapper.getTypeFactory() .constructCollectionType(ArrayList.class, RouteDefinition.class); routeDefinitions = objectMapper.readValue(content, collectionType); }catch (NacosException e){ log.info("nacos config NacosException ", e); } catch (JsonProcessingException e) { log.info("nacos config JsonProcessingException ", e); } } private void initNacosListener() throws NacosException { configService.addListener( NacosConfig.DATA_ID, NacosConfig.GROUP_ID, new DataChangeListener()); } class DataChangeListener implements Listener{ @Override public Executor getExecutor() { return null; } @Override public void receiveConfigInfo(String content) { try { log.info("gateway config change : {}", content); CollectionType collectionType = objectMapper.getTypeFactory() .constructCollectionType(ArrayList.class, RouteDefinition.class); routeDefinitions = objectMapper.readValue(content, collectionType); // 当数据发生变化后发布刷新事件,通知CachingRouteLocator需要重新加载route定义 eventPublisher.publishEvent(new RefreshRoutesEvent(content)); }catch (JsonProcessingException e) { log.info("nacos config JsonProcessingException ", e); } } } } -
编写GatewayDynamicConfiguration配置类
java@Configuration public class GatewayDynamicConfiguration { @Bean @ConditionalOnProperty(value = "spring.cloud.gateway.dynamic.config.enable", matchIfMissing = true) public NacosRouteDefinitionLocator routeDefinitionLocator(){ return new NacosRouteDefinitionLocator() ; } }
SpringCloud-Gateway路由动态配置Nacos实现
yicj2023-10-03 17:42
相关推荐
瑞雪兆丰年兮1 分钟前
[从0开始学Java|第十八、十九天]API(常见API&对象克隆&正则表达式)KobeSacre2 分钟前
JVM G1 垃圾回收器摇滚侠22 分钟前
浏览器调试工具 检查元素 谷歌模拟器 控制台 断点调试心之伊始37 分钟前
Spring Boot 接入 MCP 实战:用 Spring AI 调用本地工具的最小闭环Refrain_zc43 分钟前
无触摸屏场景下的蓝牙交互:Android 纯按键蓝牙扫描配对与 A2DP/Headset 连接计算机安禾1 小时前
【算法设计与分析】第29篇:启发式与元启发式搜索方法综述DIY源码阁1 小时前
JavaSwing学生选课系统 - MySQL版西凉的悲伤1 小时前
Spring Boot 、Spring Cloud 微服务架构认证授权方案砍材农夫1 小时前
物联网实战:Spring Boot + Netty 搭建 MQTT | MQTT 设备模拟器