Gateway/Zuul + OpenApi 集中管理 API 资源

Gateway + OpenApi

为了启用 OpenApi,提供 API 的服务中需要添加以下依赖:

<dependency>
    <groupId>org.springdocgroupId>
    <artifactId>springdoc-openapi-webmvc-coreartifactId>
    <version>1.4.1version>
dependency>

我们的 gateway,Spring Cloud Gateway 使用 Netty 作为内嵌服务器,Netty 基于 Spring WebFlux。同时,为了显示 UI 界面,也要提供相应的库:

<dependency>
   	<groupId>org.springdocgroupId>
    <artifactId>springdoc-openapi-webflux-coreartifactId>
    <version>1.4.1version>
 dependency>
 <dependency>
    <groupId>org.springdocgroupId>
    <artifactId>springdoc-openapi-webflux-uiartifactId>
    <version>1.4.1version>
 dependency>

每个微服务都会暴露 /v3/api-docs 接口,用来获取 API 信息。可以通过 springdoc.api-docs.path 配置来修改这个路由,建议不修改。不同于 Swagger,OpenAPI 并不提供类似 SwaggerResource 可以用来收集这些 API 信息的类

幸运的是,我们可以使用 SwaggerUiConfig 来实现我们的目的

@Component
public class OpenApiConfig {

    public OpenApiConfig(RouteLocator locator, SwaggerUiConfig swaggerUiConfig) {

        List<Route> routes = routeLocator.getRoutes();

		// 去重
		Collection<Route> distinctRoutes = routes.stream()
				.collect(Collectors.toMap(Route::getLocation, p -> p, (p, q) -> p)).values();

		// 将服务名添加到下拉框
	    distinctRoutes.stream().filter(route -> route.getLocation().matches(".+-service")).forEach(route -> {
	    	String serviceName = route.getLocation();
	    	swaggerUiConfig.addGroup(serviceName);
    }
}

SwaggeUiConfig.addGroup(serviceName ) 会在 UI 界面上生成一个下拉框,并加入一个名为 serviceName 的选项。点击这个选项将会访问 /v3/api-docs/serviceName,而我们期望的是 /serviceName/v3/api-docs。所以,需要对路由进行重写

在此之前,需要配置我们的路由

spring:
  application:
    name: gateway
  cloud:
    gateway:
      discovery:
        locator:
          enabled: true
      routes:
        - id: user-service
          uri: lb://user-service
          predicates:
            - Path=/user/**
          filters:
            - RewritePath=/user/(?>.*), /$\{path}
        - id: task-service
          uri: lb://task-service
          predicates:
            - Path=/task/**
          filters:
            - RewritePath=/task/(?>.*), /$\{path}

uri: lb//user-service 将自动实现所有 user-service 实例间的负载均衡。 RewritePath=/service/(?.*), /$\{path} 将在访问请求时去掉 /service 前缀

然后,将 /v3/api-docs/serviceName 的路由重写为 /serviceName/v3/api-docs

- id: openapi
  uri: http://localhost:${server.port}
  predicates:
    - Path=/v3/api-docs/**
  filters:
    - RewritePath=/v3/api-docs/(?>.*), /$\{path}/v3/api-docs

最后效果呈现如下:
Gateway/Zuul + OpenApi 集中管理 API 资源_第1张图片

Zuul + OpenApi

Zuul 内嵌的是 Tomcat,不需要 WebFlux 加持,所以使用以下依赖

<dependency>
 	<groupId>org.springdocgroupId>
    <artifactId>springdoc-openapi-uiartifactId>
    <version>1.4.1version>
dependency>

OpenApiConfig 和前半节中的相同

Zuul 中 路由配置:

spring:
  application:
    name: gateway

zuul:
  ignoredPatterns:
    - /v3/api-docs
    - /v3/api-docs/swagger-config
  routes:
    user:
      service-id: user-service
      path: /user/**
    task:
      service-id: task-service
      path: /task/**
    apis:
      service-id: gateway
      path: /v3/api-docs/**

/v3/api-docs/swagger-config 并不需要路由,所以加到 ignoredPatterns

如我们看到的,Zuul 不提供 Gateway 中的 RewritePath。我们可以使用过滤器来完成重写路由的工作:

@Component
public class UrlPathFilter extends ZuulFilter {

    @Override
    public String filterType() {
        return "route";
    }

    @Override
    public int filterOrder() {
        return 0;
    }

    @Override
    public boolean shouldFilter() {
        String requestURI = RequestContext.getCurrentContext().getRequest().getRequestURI();
        return requestURI.matches("/v3/api-docs/.+");
    }

    @Override
    public Object run() {
        String requestURI = RequestContext.getCurrentContext().getRequest().getRequestURI();
		
		// 提取出路由最后一节,即服务名
        String servicePattern = "/v3/api-docs/(?.+)";
        Pattern compile = Pattern.compile(servicePattern);
        Matcher matcher = compile.matcher(requestURI);

        String group = "";
        while (matcher.find()) {
            group = matcher.group("group");
        }

		// 重写路由
        String path = "/" + group + "/v3/api-docs";

        RequestContext context = RequestContext.getCurrentContext();
        context.put(FilterConstants.REQUEST_URI_KEY, path);
        System.out.println(path);
        return null;
    }
}

最后的效果和上面相同

你可能感兴趣的:(Spring,java,zuul,swagger,Spring,boot)