标签:中心 依赖 网关 api str 微服务 tps get gap
前言:本章将继续上一章Spring Cloud微服务,本章主要内容是API 网关,相关代码将延续上一章,如需了解请参考:Spring Cloud 微服务一:Consul注册中心
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-zuul</artifactId> </dependency>
@SpringBootApplication @EnableZuulProxy public class ApiGatewayApplication { public static void main(String[] args) { SpringApplication.run(ApiGatewayApplication.class, args); } }
server:
port: 8080
spring:
application:
name: api-gateway
zuul:
routes:
user:
path: /user/**
url: http://localhost:10080/
debug: true
Spring Cloud 微服务二:API网关spring cloud zuul
标签:中心 依赖 网关 api str 微服务 tps get gap
原文地址:https://www.cnblogs.com/csts/p/10276277.html