如何使用阿波罗整合zuul实现动态路由

61次阅读
没有评论

共计 2130 个字符,预计需要花费 6 分钟才能阅读完成。

今天丸趣 TV 小编给大家分享一下如何使用阿波罗整合 zuul 实现动态路由的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。

1、前言

Windows 系统搭建基于携程 Apollo 配置中心分布式模式,在此基础上,介绍如何使用阿波罗整合 zuul 实现动态路由。

2、项目搭建 2.1  创建 Spring Boot 项目 apollo-zuul

 apollo-zuul 项目用的是 Eureka 作为服务注册与发现,因此这里我加入了 Eureka Client 的依赖,同时需要加入 zuul 网关的依赖实现微服务的路由

 pom.xml 文件加入以下依赖

dependencies 
  dependency 
  groupId org.springframework.cloud /groupId 
  artifactId spring-cloud-starter-eureka /artifactId 
  /dependency 
  dependency 
  groupId com.ctrip.framework.apollo /groupId 
  artifactId apollo-client /artifactId 
  version 0.10.0-SNAPSHOT /version 
  /dependency 
  dependency 
  groupId org.springframework.boot /groupId 
  artifactId spring-boot-starter-test /artifactId 
  scope test /scope 
  /dependency 
  dependency 
  groupId org.springframework.boot /groupId 
  artifactId spring-boot-starter-actuator /artifactId 
  scope true /scope 
  /dependency 
  dependency 
  groupId org.springframework.cloud /groupId 
  artifactId spring-cloud-starter-zuul /artifactId 
  /dependency 
 /dependencies

2.2 下载项目

  在官方 github 项目中,把项目下载下来   https://github.com/ctripcorp/apollo,导入到 Eclipse 工程中。如下图

  由于官方给出的分布式搭建需要加入很多启动参数,过于繁琐,可以考虑 https://gitee.com/234gdfgsdf/open-capacity-platform/tree/master/apollo-master 下载

  项目组织结构 (功能)[端口]

├── apollo — 阿波罗配置中心

├  ├── apollo-configservice  (提供配置的修改、发布等功能,服务对象是 Apollo Portal) [8080]

├  ├── apollo-adminservice  (提供配置的读取、推送等功能,服务对象是 Apollo 客户端)[8090]

├  ├── apollo-portal  (管理界面) [8070]

├  └── apollo-zuul  (阿波罗整合 zuul 网关)

└── open-eureka-server  (服务注册中心)[1111]2.3 application.properties 配置写入到 Apollo 配置中心 2.3.1 application.properties

  如下原本是写在 spring boot 工程中的配置信息,接下来写入到配置中心中。

spring.application.name=sop-api-gateway
server.port=9999
zuul.ignored-services= *

2.3.2 创建 apollo 项目

  这里我已经创建好了,就不做过多演示了。

  将信息上传写入到配置文件中,然后在把工程中的 application.properties 文件删除。

2.3.3 新建 app.properties 文件

2.3.4 编写代码

 application.java 启动类

@RestController
@EnableZuulProxy
@EnableApolloConfig
@EnableDiscoveryClient
@SpringBootApplication
public class ApiGateWayApp { public static void main(String[] args) { SpringApplication.run(ApiGateWayApp.class, args);
 }
}

  注意加注解。

  然后直接启动即可。。。。。。。

3、结果如下

  访问 http://127.0.0.1:9999/test163 即可读取阿波罗页面配置参数,页面修改后可刷新所有阿波罗客户端

以上就是“如何使用阿波罗整合 zuul 实现动态路由”这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,丸趣 TV 小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注丸趣 TV 行业资讯频道。

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-08-04发表,共计2130字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)