zuul简单搭建

  1. 创建好eureka

  2. 实现zuul:
    首先是添加pom.xml文件的依赖:

     
         org.springframework.cloud
         spring-cloud-starter-eureka
         1.3.2.RELEASE
     
     
         org.springframework.cloud
         spring-cloud-starter-zuul
         1.3.4.RELEASE
     
    

然后是具体的实现,也非常简单:

@EnableZuulProxy
@SpringCloudApplication
public class ZuulApplication {
public static void main(String[] args) {
    new SpringApplicationBuilder(ZuulApplication.class).web(true).run(args);
}
}

接下来是配置文件:

spring.application.name=api-gateway
server.port=5555

//routes to serviceId 这里边是通过serviceid来绑定地址,当在路径后添加/api-a/ 则是访问service-A对应的服务。
zuul.routes.api-a.path=/api-a/**
//代理的服务名称
zuul.routes.api-a.serviceId=service-A

zuul.routes.api-b.path=/api-b/**
zuul.routes.api-b.serviceId=service-B

// routes to url 这里是绑定具体的ip地址
zuul.routes.api-a-url.path=/api-a-url/**
zuul.routes.api-a-url.url=http://localhost:2222/

eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka/

http://localhost:5555/api-a/add/1/2:

你可能感兴趣的:(java)