码迷,mamicode.com
首页 > 编程语言 > 详细

SpringCloud网关组件zuul

时间:2020-03-09 01:42:43      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:enc   rgs   boot   ignore   header   amp   pen   pre   pid   

1.引入如下依赖

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-zuul</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

2.启动类添加如下注解  @EnableZuulProxy

 

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

 

原先访问商品服务如下:

技术图片

 

通过网关访问:将访问地址改为网关地址,并添加商品服务的服务名称如下:

 

 技术图片

 

即完成统一完成由网关进行发送

 

同时可以在启动类中添加自定义路由映射

#/order-service/api/v1/order/save?user_id=2&product_id=1
#自定义路由映射
zuul:
  routes:
    order-service: /apizuul/order/**
    product-service: /apizuul/product/**
  #统一入口为上面的配置,其他入口忽略
  ignored-patterns: /*-service/**
  #处理http请求头为空的问题
  sensitive-headers:

这样就可以做到不向用户暴露真实的请求路径

技术图片

 

SpringCloud网关组件zuul

标签:enc   rgs   boot   ignore   header   amp   pen   pre   pid   

原文地址:https://www.cnblogs.com/zhuomuniao/p/12446110.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!