美文网首页
Swagger使用

Swagger使用

作者: 持而盈 | 来源:发表于2017-11-22 15:15 被阅读1次

    maven依赖

            <!--Swagger-->
            <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>
    

    配置类

    @Configuration
    @EnableSwagger2
    public class SwaggerConfiguration {
        @Bean
        public Docket createRestApi() {
            return new Docket(DocumentationType.SWAGGER_2)
                    .apiInfo(apiInfo())
                    .select()
                    .apis(RequestHandlerSelectors.basePackage("com.example"))
                    .paths(PathSelectors.any())
                    .build();
        }
    
        private ApiInfo apiInfo() {
            return new ApiInfoBuilder()
                    .title("订单服务")
                    .contact(new Contact("章兵", "null", "null"))
                    .version("1.0")
                    .build();
        }
    
    }
    
    

    相关文章

      网友评论

          本文标题:Swagger使用

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