zoukankan      html  css  js  c++  java
  • Swagger 配置

    pom 依赖:

      

    <!-- Swagger2核心包 -->
    		<dependency>
    			<groupId>io.springfox</groupId>
    			<artifactId>springfox-swagger2</artifactId>
    			<version>2.7.0</version>
    		</dependency>
    		<dependency>
    			<groupId>io.springfox</groupId>
    			<artifactId>springfox-swagger-ui</artifactId>
    			<version>2.7.0</version>
    		</dependency>
    

     配置文件:

    package com.allianz.tokenserver.config;
    
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;
    
    import springfox.documentation.builders.ApiInfoBuilder;
    import springfox.documentation.builders.PathSelectors;
    import springfox.documentation.builders.RequestHandlerSelectors;
    import springfox.documentation.service.ApiInfo;
    import springfox.documentation.spi.DocumentationType;
    import springfox.documentation.spring.web.plugins.Docket;
    import springfox.documentation.swagger2.annotations.EnableSwagger2;
    
    /**
     * Created on 2018年06月21日11:03:43
     *
     * @author yangcheng
     */
    
    @Configuration
    @EnableSwagger2
    public class SwaggerConfiguration {
    
        @Bean
        public Docket createRestApi() {
            return new Docket(DocumentationType.SWAGGER_2)
                    .apiInfo(apiInfo())
                    .select()
                    .apis(RequestHandlerSelectors.basePackage("com.allianz.tokenserver.controller"))
                    .paths(PathSelectors.any())
                    .build();
        }
    
        private ApiInfo apiInfo() {
            return new ApiInfoBuilder()
                    .title("RESTFUL API DOC")
                    .description("Spring-Boot--RESTFUL风格的接口文档在线自动生成")
                    .termsOfServiceUrl("http://www.cnblogs.com/yangchengdebokeyuan/")
                    .version("1.0")
                    .licenseUrl("http://localhost:8080/")
                    .build();
        }
    }
    

      

    访问方法:http://localhost:8888/swagger-ui.html   注:端口号为项目配置端口号(我的端口为8888)

        

  • 相关阅读:
    Django之admin
    CSS弹性盒子
    SQL SERVER按多字段查找重复的数据并删除只保留一条
    计算机名称改名之后,tfs连接问题
    Docker镜像仓库Harbor部署
    搭建docker本地仓库
    部署docker swarm集群
    Dockerfile
    centos 7 安装docker 常用指令
    python软件安装-Windows
  • 原文地址:https://www.cnblogs.com/yangchengdebokeyuan/p/9708843.html
Copyright © 2011-2022 走看看