码迷,mamicode.com
首页 > Web开发 > 详细

Netflix Zuul

时间:2017-04-18 14:05:12      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:string   gateway   depend   pid   public   stat   div   header   etag   

Zuul 是在云平台上提供动态路由,监控,弹性,安全等边缘服务的框架。Zuul 相当于是设备和 Netflix 流应用的 Web 网站后端所有请求的前门。

ApiGateway服务器

1、pom

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

2、配置文件

  无相关配置

3、类

@SpringBootApplication
@EnableDiscoveryClient
@RestController
@EnableZuulProxy
public class GatewayApplication {
    public static void main(String[] args) {
        SpringApplication.run(GatewayApplication.class, args);
    }
    @Bean
    public Filter shallowEtagHeaderFilter() {
        return new ShallowEtagHeaderFilter();
    }
}

@EnableZuulProxy

Netflix Zuul

标签:string   gateway   depend   pid   public   stat   div   header   etag   

原文地址:http://www.cnblogs.com/yanyouqiang/p/6727311.html

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