likes
comments
collection
share

SpringCloud 整合Gateway服务网关 【SpringCloud系列5】

作者站长头像
站长
· 阅读数 88

SpringCloud 大型系列课程正在制作中,欢迎大家关注与提意见。 程序员每天的CV 与 板砖,也要知其所以然,本系列课程可以帮助初学者学习 SpringBooot 项目开发 与 SpringCloud 微服务系列项目开发

SpringCloud 整合Gateway服务网关 【SpringCloud系列5】

1 Gateway服务网关

Spring Cloud Gateway 是 Spring Cloud 的一个全新项目,该项目是基于 Spring 5.0,Spring Boot 2.0 和 Project Reactor 等响应式编程和事件流技术开发的网关,它旨在为微服务架构提供一种简单有效的统一的 API 路由管理方式。

Gateway服务网关的功能定位如下:

  • 请求路由
  • 权限控制
  • 身份认证

本文章实现的是基本的路由关系:

SpringCloud 整合Gateway服务网关 【SpringCloud系列5】

2 整合 Gateway 服务网关

首先是在父工程中创建一个gateway-api 服务,新建一个maven项目,删除多余的内容,留下空的项目

SpringCloud 整合Gateway服务网关 【SpringCloud系列5】

启动类

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class GatewayApplication {

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

}

application.yml 配置 添加 nacos 与 网关的相关配置如下:

server:
  port: 10001
spring:
  application:
    name: '@project.name@'
  cloud:
    nacos:
      server-addr: localhost:8848 # nacos地址
    gateway:
      routes: # 网关路由配置
        - id: user-service # 路由id,自定义,只要唯一即可
          # uri: http://127.0.0.1:8081 # 路由的目标地址 http就是固定地址
          uri: lb://user-service # 路由的目标地址 lb就是负载均衡,后面跟服务名称
          predicates: # 路由断言,也就是判断请求是否符合路由规则的条件
            - Path=/user/** # 这个是按照路径匹配,只要以/user/开头就符合要求
        - id: order-service # 路由id,自定义,只要唯一即可
          # uri: http://127.0.0.1:8081 # 路由的目标地址 http就是固定地址
          uri: lb://order-service 
          predicates: 
            - Path=/order/** 

pom.xml 中添加依赖如下:

<!--网关-->
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
<!--nacos服务发现依赖-->
<dependency>
    <groupId>com.alibaba.cloud</groupId>
    <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
    <exclusions>
        <exclusion>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
        </exclusion>
    </exclusions>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-loadbalancer</artifactId>
</dependency>

然后启动 网关服务、订单服务、用户服务

SpringCloud 整合Gateway服务网关 【SpringCloud系列5】

然后在 nacos 中查看服务

SpringCloud 整合Gateway服务网关 【SpringCloud系列5】

然后在 postman 中测试接口 测试 user 接口

SpringCloud 整合Gateway服务网关 【SpringCloud系列5】

测试 order 接口 SpringCloud 整合Gateway服务网关 【SpringCloud系列5】 再测试 网关接口

SpringCloud 整合Gateway服务网关 【SpringCloud系列5】

本项目源码gitee.com/android.lon… 如果有兴趣可以关注一下公众号 biglead ,每周都会有 java、Flutter、小程序、js 、英语相关的内容分享

转载自:https://juejin.cn/post/7212603829572845623
评论
请登录