美文网首页
通过Zuul搭建Swagger集群

通过Zuul搭建Swagger集群

作者: 长孙俊明 | 来源:发表于2019-10-10 01:12 被阅读0次

    软件环境

    SpringCloud Config
    Eureka
    码云
    Zuul
    Swagger

    搭建步骤

    接口项目A

    package com.springcloudtest.swagger;
    
    import com.spring4all.swagger.EnableSwagger2Doc;
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
    
    @SpringBootApplication
    @EnableSwagger2Doc
    @EnableEurekaClient
    public class SwaggerApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(SwaggerApplication.class, args);
        }
    
    }
    
    
    package com.springcloudtest.swagger.api;
    
    import io.swagger.annotations.ApiImplicitParam;
    import io.swagger.annotations.ApiOperation;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    @RestController
    public class SwaggerController {
    
        @GetMapping("/getResult")
        @ApiImplicitParam(name = "result", value = "参数一描述", required = true, dataType = "String")
        @ApiOperation("Swagger演示接口")
        public String getResult(String result) {
            return "我的结果=" + result;
        }
    }
    
    
    server.port=7000
    swaggr.base-package=com.springcloudtest.swagger.api
    spring.application.name=app-member
    eureka.client.serviceUrl.defaultZone=http://127.0.0.1:8100/eureka/
    
    <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
            </dependency>
    
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>com.spring4all</groupId>
                <artifactId>swagger-spring-boot-starter</artifactId>
                <version>1.9.0.RELEASE</version>
            </dependency>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
                <version>2.1.3.RELEASE</version>
            </dependency>
        </dependencies>
    
    

    网关项目

    ###服务名称(服务注册到eureka名称)
    spring:
       application:
           name: test-configClient #如果配置了Config,该名称必须跟Git上的配置文件前缀一致。如:test-configClient-prd.properties
       cloud:
         config:
           # 读取版本环境,也就是配置文件的后缀名。如:test-configClient-prd.properties
           profile: prd
           discovery:
             # 就是读取configserver服务,写成configserver的spring.application.name
             service-id: config-server
             enabled: true
    ###服务启动端口号
    server:
       port: 8087
    ###服务注册到eureka地址
    eureka:
     client:
       service-url:
         defaultZone: http://localhost:8100/eureka
    # 开启所有端点management:
    management:
      endpoints:
        web:
          exposure:
            include: "*"
    
    <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
                <version>2.1.0.RELEASE</version>
            </dependency>
    
            <!--导入服务网关zuul-->
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-starter-netflix-zuul</artifactId>
            </dependency>
    
            <!--导入eureka客户端-->
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
            </dependency>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-config-client</artifactId>
            </dependency>
            <!-- actuator 监控中心 -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-actuator</artifactId>
            </dependency>
            <dependency>
                <groupId>com.spring4all</groupId>
                <artifactId>swagger-spring-boot-starter</artifactId>
                <version>1.9.0.RELEASE</version>
            </dependency>
    
        </dependencies>
    
    package com.test.zuul;
    
    import com.spring4all.swagger.EnableSwagger2Doc;
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.boot.context.properties.ConfigurationProperties;
    import org.springframework.cloud.context.config.annotation.RefreshScope;
    import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
    import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
    import org.springframework.cloud.netflix.zuul.filters.ZuulProperties;
    import org.springframework.context.annotation.Primary;
    import org.springframework.stereotype.Component;
    import springfox.documentation.swagger.web.SwaggerResource;
    import springfox.documentation.swagger.web.SwaggerResourcesProvider;
    
    import java.util.ArrayList;
    import java.util.List;
    
    @SpringBootApplication
    @EnableEurekaClient
    @EnableZuulProxy
    @EnableSwagger2Doc
    public class ZuulApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(ZuulApplication.class, args);
        }
    
        @RefreshScope
        @ConfigurationProperties("zuul")
        public ZuulProperties zuulProperties() {
            return new ZuulProperties();
        }
    
        // 添加文档来源
        @Component
        @Primary
        class DocumentationConfig implements SwaggerResourcesProvider {
    
            @Override
            public List<SwaggerResource> get() {
                List resources = new ArrayList();
                resources.add(swaggerResource("app-member", "/api-member/v2/api-docs", "2.0"));
    //            resources.add(swaggerResource("app-order", "/api-order/v2/api-docs", "2.0"));
                return resources;
            }
    
            private SwaggerResource swaggerResource(String name, String location, String version) {
                SwaggerResource swaggerResource = new SwaggerResource();
                swaggerResource.setName(name);
                swaggerResource.setLocation(location);
                swaggerResource.setSwaggerVersion(version);
                return swaggerResource;
            }
        }
    
    }
    
    
    image.png

    相关文章

      网友评论

          本文标题:通过Zuul搭建Swagger集群

          本文链接:https://www.haomeiwen.com/subject/rcnnpctx.html