SpringCloud整合zuul实现统一地址的最基础应用

SpringCloud整合zuul实现统一地址

一、本文章只讲实现SpringCloud整合zuul操作部分,原理和逻辑请参考其他介绍

目的:实现cloud多个微服务的统一访问地址,供前段API接口调用

效果图:

SpringCloud整合zuul实现统一地址的最基础应用_第1张图片SpringCloud整合zuul实现统一地址的最基础应用_第2张图片

testFeign是photo-stock项目的controller接口,地址是zuul的地址

具体步骤如下:(注册中心eureka】生产消费的项目搭建请参考其他博客,这里不再赘述,只讲zuul)

1、引入依赖:

         
            org.springframework.cloud
            spring-cloud-starter-eureka
            1.4.6.RELEASE
        

        
            org.springframework.cloud
            spring-cloud-starter-zuul
            1.4.6.RELEASE
        

 2、在启动application中注册到eureka,开启代理服务

@EnableZuulProxy
@EnableEurekaClient
@SpringBootApplication
public class ZuulApplication {

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

}

3、yml配置文件

server:
  port: 8765
eureka:
  client:
    serviceUrl:
      defaultZone: http://127.0.0.1:8761/eureka/
spring:
  application:
    name: zuul-proxy
# 当发布至外网时可能会出现zuul连接超时,需要增加下面配置
ribbon:
  ReadTimeout: 60000  # 单位毫秒数
  SocketTimeout: 60000

成功注册到eureka就成功了,见开始截图

你可能感兴趣的:(SpingCloud)