登录
首页 >  数据库 >  MySQL

JAVA 多用户商城系统b2b2c-API网关服务(Spring Cloud Gateway)

来源:SegmentFault

时间:2023-01-11 08:23:50 150浏览 收藏

哈喽!今天心血来潮给大家带来了《JAVA 多用户商城系统b2b2c-API网关服务(Spring Cloud Gateway)》,想必大家应该对数据库都不陌生吧,那么阅读本文就都不会很困难,以下内容主要涉及到MySQL、Java、spring、tomcat、maven,若是你正在学习数据库,千万别错过这篇文章~希望能帮助到你!

1 Spring Cloud Gateway
在微服务架构中,网关作为服务的一个统一入口,所有的外部客户端访问都需要经过它来调度和过滤,可以实现的功能包括动态路由、负载均衡、授权认证、限流等。
需要JAVA Spring Cloud大型企业分布式微服务云构建的B2B2C电子商务平台源码:壹零叁八柒柒肆六二六
Spring Cloud Gateway是Spring官方基于Spring 5.0,Spring Boot 2.0和Project Reactor等技术开发的网关,旨在为微服务架构提供一种简单而有效的统一的API路由管理方式,并为他们提供横切关注点,例如:安全,监控/指标和弹性。
本篇将示例搭建一个简单的网关服务。

2 构建网关
2.1 新建Spring Boot项目,引入相关依赖

org.springframework.bootspring-boot-starter-parent2.0.4.RELEASEUTF-8UTF-81.8org.springframework.bootspring-boot-starterorg.springframework.bootspring-boot-starter-testtestorg.springframework.bootspring-boot-starter-actuatororg.springframework.cloudspring-cloud-starter-netflix-eureka-clientorg.springframework.cloudspring-cloud-starter-gatewayorg.springframework.cloudspring-cloud-starter-netflix-hystrixorg.springframework.cloudspring-cloud-dependenciesFinchley.SR1pomimport

2.2 application.properties配置

spring.application.name=api-gateway
server.port=8888
#注册中心
eureka.client.serviceUrl.defaultZone=http://localhost:1002/eureka/,http://localhost:1003/eureka/

#实例默认通过使用域名形式注册到注册中心:false
eureka.instance.prefer-ip-address=true

#实例名
eureka.instance.instance-id=${spring.cloud.client.ip-address}:${server.port}

#是否与服务注册于发现组件进行结合,通过 serviceId 转发到具体的服务实例
#默认为false,设为true便开启通过服务中心的自动根据 serviceId 创建路由的功能
#其中微服务应用名默认大写访问
spring.cloud.gateway.discovery.locator.enabled=true

2.3 添加Filter,实现简单的授权认证

@Configuration
public class TokenFilter implements GlobalFilter, Ordered {

    @Override
    public int getOrder() {
        return -100;
    }

    @Override
    public Mono filter(ServerWebExchange exchange, GatewayFilterChain chain) {
        String token = exchange.getRequest().getQueryParams().getFirst("token");
       //url不含token参数时返回401状态码
        if (token == null || token.isEmpty()) {
            exchange.getResponse().setStatusCode(HttpStatus.UNAUTHORIZED);
            return exchange.getResponse().setComplete();
        }
        return chain.filter(exchange);
    }
}

2.4 入口程序添加@SpringCloudApplication注解并启动

[@SpringCloudApplication](/user/SpringCloudApplication)
public class ApiGatewayApplication {

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

}

启动应用,访问 localhost:8888/EUREKA-CLIENT/hello ,可以看到页面401状态码,而token参数再次请求后,则可以看到正常返回了结果(注意服务名为大写)。电子商务社交平台源码请加企鹅求求:三五三六二四七二五九

好了,本文到此结束,带大家了解了《JAVA 多用户商城系统b2b2c-API网关服务(Spring Cloud Gateway)》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多数据库知识!

声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表