博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JavaEE进阶知识学习-----SpringCloud(九)Zuul路由网关
阅读量:5961 次
发布时间:2019-06-19

本文共 3354 字,大约阅读时间需要 11 分钟。

Zuul路由网关

概述

Zuul包含了对请求的路由和过滤两个主要的功能,其中路由的功能是负责将外部请求转发到具体的微服务实例上,是实现外部访问统一入口的基础而过滤功能是负责对请求的处理过程进行干预,是实现请求校验,服务聚合等功能的基础,Zuul和Eureka进行整合,将Zuul自身注册近Eureka服务治理的应用,同时从Eureka中获取其他微服务的消息,也及时以后的访问服务都是通过Zuul跳转后获得, 注意的是Zuul服务最终还是会注册近Eureka中

路由基本配置

新建项目microservicecloud-zuul-gateway-9527,添加依赖如下

pom.xml文件

4.0.0
com.luo.springcloud
microservicecloud
0.0.1-SNAPSHOT
microservicecloud-zuul-gateway-9527
org.springframework.cloud
spring-cloud-starter-zuul
org.springframework.cloud
spring-cloud-starter-eureka
org.springframework.boot
spring-boot-starter-actuator
org.springframework.cloud
spring-cloud-starter-hystrix
org.springframework.cloud
spring-cloud-starter-config
com.luo.springcloud
microservicecloud-api
${project.version}
org.springframework.boot
spring-boot-starter-jetty
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-test
org.springframework
springloaded
org.springframework.boot
spring-boot-devtools
复制代码

application.yml文件

server:   port: 9527 spring:   application:    name: microservicecloud-zuul-gateway eureka:   client:     service-url:       defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka,http://eureka7003.com:7003/eureka    instance:    instance-id: gateway-9527.com    prefer-ip-address: true   zuul:   #ignored-services: microservicecloud-dept  prefix: /luo  ignored-services: "*"info:  app.name: luo-microcloud  company.name: www.luo.com  build.artifactId: $project.artifactId$  build.version: $project.version$复制代码

修改host文件

127.0.0.1 myzuul.com复制代码

主启动类Zuul_9527_StartSpringCloudApp

@SpringBootApplication@EnableZuulProxypublic class Zuul_9527_StartSpringCloudApp {	public static void main(String[] args) {		SpringApplication.run(Zuul_9527_StartSpringCloudApp.class, args);	}}复制代码

启动

三个集群,一个服务提供类microservicecloud-provider-dept-8001,一个路由

测试

不使用路由:http://localhosat:8001/dept/get/2

使用路由:http://myzuul.com:9527/microservicecloud-dept/dept/get/2

Zuul路由访问映射

在前面的测试中我们可以使用http://myzuul.com:9527/microservicecloud-dept/dept/get/2访问我们的接口,这样就暴露我们的微服务名称,需要做安全加固,就用到了路由访问映射,修改路由项目的yml文件,添加 mydept.path: /mydept/**

zuul:   #ignored-services: microservicecloud-dept #忽略真实地址,只让虚拟地址访问  prefix: /luo #访问地址前缀  ignored-services: "*"#忽略真实地址,只让虚拟地址访问  routes:     mydept.serviceId: microservicecloud-dept ##真实地址    mydept.path: /mydept/** # 虚拟地址复制代码

访问连接:http://lyzuul.com:9527/luo/mydept/dept/get/1

转载地址:http://tljax.baihongyu.com/

你可能感兴趣的文章
FineReport中如何实现自动滚屏效果
查看>>
使用Collections对集合排序
查看>>
系统启动时,spring配置文件解析失败,报”cvc-elt.1: 找不到元素 'beans' 的声明“异常...
查看>>
使用flex访问java方法:tomcat+xfire
查看>>
Linux计划任务
查看>>
大众点评信息流基于文本生成的创意优化实践
查看>>
Micropython+STM32制作加速度传感器无线小车
查看>>
深拷贝的传统写法
查看>>
计算机硬件及操作系统基础学习笔记
查看>>
Spring event 使用完全指南
查看>>
Android Studio3 "Error:Unable to tunnel through proxy. Proxy returns "HTTP/1.1 400 Bad Request""
查看>>
kubernetes redis pod CrashLoopBackOff修复心得
查看>>
Vlan的端口属性
查看>>
Beyond Compare 激活解决办法
查看>>
linux 低级文件编程(内核级别)
查看>>
【每天记一点】jquery设置radio选中遇到的问题
查看>>
main调用静态函数时候注意问题
查看>>
useradd
查看>>
PHP常量详解:define和const的区别
查看>>
centos下virtualbox里面xp 安装VBoxGuestAdditions
查看>>