首页>代码>基于SpringBoot+SpringBoot Data Jpa+Mysql的自适应摄影管理系统>/Shoot/src/main/java/com/java214/config/Swagger2Configuration.java
package com.java214.config;

import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
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.service.Contact;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;

/***
 *@author java214
 *@site www.java214.com
 *@company 一帆风顺网络科技有限公司
 *@create 2019-12-10 22:11
 *swagger 配置信息
 *
 *
 *
 */
@Configuration
@ConditionalOnProperty(prefix = "swagger", value = {"enable"}, havingValue = "true")
@EnableSwagger2
public class Swagger2Configuration {

    @Bean
    public Docket createRestApi() {
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.basePackage("com.java214.controller"))
                .paths(PathSelectors.any())
                .build();
    }


    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                //页面标题
                .title("摄影系统接口说明文档")
                .description("API 描述")
                .termsOfServiceUrl("javascript:void(0);")
                .contact(new Contact("Mr.Teng", "javascript:void(0);", "583859395@qq.com"))
                .version("1.1")
                .build();
    }
}
最近下载更多
zolscy  LV24 11月26日
TY0165  LV20 6月16日
molu123456 6月4日
暂无贡献等级
朱朱啊哈  LV16 4月8日
wanglinddad  LV55 3月13日
2781674049  LV1 3月5日
akkye_7  LV1 1月8日
lilong007  LV22 2023年12月30日
逝水莲花  LV7 2023年12月1日
2410068425  LV23 2023年11月27日
最近浏览更多
zolscy  LV24 11月26日
yimaoermao  LV1 9月14日
暂无贡献等级
Iterman  LV2 8月16日
xtm123  LV18 8月12日
TY0165  LV20 6月16日
develop  LV10 6月2日
f22m1a2b2  LV17 5月31日
hanyuelinmumu  LV4 5月17日
sink122406  LV12 5月16日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友