SpringCloud 网关配置:spring-cloud-gateway

微服务网关

微服务网关的功能:

    路由转发,接收一切外界请求,转发到后端的微服务上去;

    请求过滤,在服务网关中可以完成一系列的横切功能,例如权限校验、限流以及监控等,这些都可以通过过滤器完成(其实路由转发也是通过过滤器实现的)

微服务网关种类

    Zuul,spring-cloud-gateway,linkerd,Nignx,还有lyft的Envoy,Undertow等等备用方案。

主要的为前4个工具:

   Zuul, zuul 1.x 是一个基于阻塞IO的API 网关。提供动态路由,监控,弹性,安全等的边缘服务。是Netflix出品的一个基于JVM路由和服务端的负载均衡器。zuul 2.x 基于Netty,实现了非阻塞IO,支持长连接的API网关。SpringCloud暂时还没有整合计划。

    SpringCloud-gateway: 非阻塞的IO 的API网关。上手简单,功能强大。

    Linkerd ,基于Scala实现的,目前是市面上仅有生产级别的Service Mesh。

    Nginx,不说了。

本文主要介绍spring-cloud-starter-gateway的搭建。如果想看高级的教程的话:

http://www.iocoder.cn/categories/Spring-Cloud-Gateway/    

简单的环境搭建(基于Spring-boot-starter-parent,2.0.0.RELEASE)

    1.引用依赖

             
		
			org.springframework.boot
			spring-boot-starter-actuator
		
		
			org.springframework.boot
			spring-boot-starter-webflux
		
		
			org.springframework.cloud
			spring-cloud-starter-gateway
		
		
			org.isomorphism
			token-bucket
			1.7
		
		
			org.springframework.boot
			spring-boot-starter-test
			test
		
		
			io.projectreactor
			reactor-test
			test
		
		
			org.assertj
			assertj-core
			test
		
		
			org.jetbrains.kotlin
			kotlin-stdlib
			true
		
		
			org.jetbrains.kotlin
			kotlin-reflect
			true
		
	
	
		
			
				org.springframework.boot
				spring-boot-maven-plugin
						
			
				org.jetbrains.kotlin
				kotlin-maven-plugin
				
					
						-Xjsr305=strict
					
					1.8
				
				
					
						compile
						compile
						
							compile
						
						
							
								src/main/java
								src/main/kotlin
							
						
					
					
						test-compile
						test-compile
						
							test-compile
						
						
							
								src/test/java
								src/test/kotlin
							
						
					
				
			
			
				org.apache.maven.plugins
				maven-compiler-plugin
				
					
						-parameters
					
				
				
					
					
						default-compile
						none
					
					
					
						default-testCompile
						none
					
					
						java-compile
						compile
						
							compile
						
					
					
						java-test-compile
						test-compile
						
							testCompile
						
					
				
			
			
				maven-deploy-plugin
				
					true
				
			
		
	

2.启动类编写

@SpringBootConfiguration
@EnableAutoConfiguration
public class GatewaySampleApplication {

	public static void main(String[] args) {
		SpringApplication.run(GatewaySampleApplication.class, args);
	}
}

 

3.编写配置文件

 

spring:
  cloud:
     gateway:
        default-filters:
        - AddResponseHeader=X-Response-Default-Foo, Default-Bar
        - AddRequestHeader=fangxiaobai,its sound good
        - PrefixPath=/httpbin
        routes:
        - id: fangxiaobai_test
          host: 127.0.0.1
          # 除了ws,还有lb,不知道什么意思
          uri: http://www.baidu.com/
          predicates:
            - Host=127.0.0.1
            - Method=GET
            - Path=/web
          filters:
            - AddResponseHeader=X-Response-Foo, Bar
            - SetPath=/web

详细:http://www.iocoder.cn/Spring-Cloud-Gateway/route-definition-locator-properties/

https://github.com/YunaiV/spring-cloud-gateway/blob/382a4cd98fbb8ac53a83a5559bacb0f885838074/spring-cloud-gateway-core/src/test/resources/application.yml#L10

以上这种方式是使用配置文件的形式来配置路由。除了这种方式,还有供API的形式和kotlin的形式来配置,

对于路由的存储,还有从配置文件中读取,从存储器中读取,从注册中心中读取,也可以组成以上这三种形式的读取路由。

接下来记录一下,从注册中心读取。

非常简单,在配置文件中加入如下配置就可;

  cloud:
    gateway:
      discovery:
        locator:
          enabled: true

当然你还得有一个注册服务中心,你可以手动搭建一个,也可以。。。。使用这个http://eureka.didispace.com/

今天用了一天的时间,学习了这些内容,其他内容后续补充,,,,,

学习内容:http://www.iocoder.cn/categories/Spring-Cloud-Gateway/

学习内容,,记录下。

 

 

最后


如果你觉得写的还不错,就关注下公众号呗,关注后,有点小礼物回赠给你。
你可以获得5000+电子书,java,springCloud,adroid,python等各种视频教程,IT类经典书籍,各种软件的安装及破解教程。
希望一块学习,一块进步!

你可能感兴趣的:(Spring,cloud,Spring,Cloud)