| | |
| | | import org.springframework.cloud.gateway.config.GatewayProperties;
|
| | | import org.springframework.cloud.gateway.route.RouteLocator;
|
| | | import org.springframework.cloud.gateway.support.NameUtils;
|
| | | import org.springframework.context.annotation.Lazy;
|
| | | import org.springframework.stereotype.Component;
|
| | | import org.springframework.web.reactive.config.ResourceHandlerRegistry;
|
| | | import org.springframework.web.reactive.config.WebFluxConfigurer;
|
| | |
| | | * Swagger2默认的url后缀
|
| | | */
|
| | | public static final String SWAGGER2URL = "/v2/api-docs";
|
| | |
|
| | | /**
|
| | | * 网关路由
|
| | | */
|
| | | @Lazy
|
| | | @Autowired
|
| | | private RouteLocator routeLocator;
|
| | |
|