网关中心(gateway)配置
在上一讲中我们讲了消息总线Bus+Rabbit MQ实现动态刷新,这一讲我们主要来说一下网关的问题。网关顾名思义网络的关口,网关的作用对于个人的理解来讲它就是一扇大门,将所有的人拦截在外面,认识的通过,不认识的做其他处理,因此一个项目网关是非常重要的,在整个项目中主要起拦截和转发的作用。
一)创建项目
创建模块主要分为两部分server模块的创建和client模块的创建。
Gateway创建
1、创建一个新的模块,和前面几讲的一样,打开上一篇创建的项目microservice选中,并单击右键New→Module,选择Spring Initializr默认下一步;
2、进入该页面填Group和Artifact,Group要写对和上次的要一样,Artifact 我命名为gateway-server,如图1所示:
3、点击Next,选择相关依赖,Spring Cloud Routing 下的Gateway是核心依赖如下图2所示:
4、继续Next→Finish,等待下载依赖。完成后,首先进行启动类GatewayServerApplication的配置,如下图3所示:
代码如下:
package com.glen.gatewayserver;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.context.annotation.ComponentScan;
@ComponentScan("com.glen")
@EnableDiscoveryClient
@SpringBootApplication
public class GatewayServerApplication{
public static void main(String[] args) {
SpringApplication.run(GatewayServerApplication.class, args);
}
}
5、接下来配置application.properties文件。如图4所示:
spring.application.name=gateserver-server
eureka.client.service-url.defaultZone= http://localhost:8081/eureka/
server.port=8084
eureka.instance.prefer-ip-address=true
## 网关配置
# 配置通过serverid小写访问
spring.cloud.gateway.discovery.locator.enabled=true
spring.cloud.gateway.locator.lowerCaseServiceId=true
# 测试路由
# 路由名称
spring.cloud.gateway.routes[0].id=test_route
# 这个是服务名称spring.application.name,全部拦截到这里,lb代表从注册中心获取服务
spring.cloud.gateway.routes[0].uri=lb://app-customer-login/user/login
# 要拦截的地址
spring.cloud.gateway.routes[0].predicates[0]=Path=/**
# 去掉路径的 n 个前缀
spring.cloud.gateway.routes[0].filters[0]=StripPrefix=1
相关说明:主要是测试路由这一块的内容比较重要,我已经在注解里面做了说明,还有很多路由转发策略,反正网上都可以搜得到我就不在这里赘述了。 到此网关就搭建完成了,是不是感觉很简单,主要还是配置内容比较麻烦。
三)测试项目
接下来我们做测试:
1、首先打开之前已经几节课写好的app-customer-first模块,在controller里新增一个方法作为测试,如下图所示:
代码如下:
@RequestMapping(value = "/user/login", method = RequestMethod.GET)
public String test1() {
return "这是一个测试,恭喜程序猿小哥哥,路由拦截转发成功啦";
}
2、我们依次启动注册中心(EurekaServerApplication)、之前写好的customer(AppCustomerFirstApplication )、以及这次写的网关(GatewayServerApplication)新打开一个地址栏,输入localhost:8084/use/user/login,
返回如下表示成功
说明:
http:localhost:8084/app-customer-first/user/login
a、 8084是网关的端口号,切记,不是服务的端口号。
b、app-customer-first这一块可以随便输,因为我们在之前配置的转发是spring.cloud.gateway.routes[0].predicates[0]=Path=/**,也就是转发所有。
c、/user/login这是我们刚才新写的controller地址。
至此,该I篇文章结束。
下一篇主要讲基于OAuth2.0+JWT的鉴权中心。
SpringCloud从零构建(一)——Eureka注册中心
SpringCloud从零构建(二)——创建服务端Server
SpringCloud从零构建(三)——创建消费者Customer
SpringCloud从零构建(四)——Feign实现负载均衡
SpringCloud从零构建(五)——Config配置中心
SpringCloud从零构建(六)——消息总线Bus+Rabbit MQ实现动态刷新
SpringCloud从零构建(七)——网关中心(gateway)配置
github地址:https://github.com/gjen1996/microservice
如果有问题欢迎小伙伴留言和我沟通交流。