首页>代码>基于SpringBoot实现的学生就业管理系统>/源代码/employment/src/main/java/com/project/config/SwaggerConfig.java
package com.project.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.Contact;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;

/**
 * @Author: liangrenren
 * @Date: 21:51 2021/2/18
 * @Description:
 * @Version v1.0
 */

@Configuration
@EnableSwagger2
public class SwaggerConfig {
    @Bean
    public Docket createRestApi() {
        return new Docket(DocumentationType.SWAGGER_2)
                .pathMapping("/")
                .select()
                .apis(RequestHandlerSelectors.basePackage("com.project.controller"))
                .paths(PathSelectors.any())
                .build().apiInfo(new ApiInfoBuilder()
                        .title("SpringBoot整合Swagger")
                        .description("SpringBoot整合Swagger,详细信息......")
                        .version("9.0")
                        .contact(new Contact("啊啊啊啊","blog.csdn.net","aaa@gmail.com"))
                        .license("The Apache License")
                        .licenseUrl("http://www.baidu.com")
                        .build());
    }
}
最近下载更多
筱洋1616  LV9 11月1日
Luck_ZDM  LV12 10月24日
小丑八怪  LV2 10月21日
luhong  LV5 9月20日
vincemokea  LV9 9月14日
yangchengshuai  LV16 9月3日
hulewang  LV8 7月16日
大神程序员  LV23 7月2日
sgrfsgrts  LV2 5月15日
最近浏览更多
rao11011  LV1 11月5日
筱洋1616  LV9 11月1日
khmumuno 10月24日
暂无贡献等级
Luck_ZDM  LV12 10月24日
Osit888  LV12 10月24日
ymsyms  LV2 10月21日
奋斗的小蚂蚁  LV16 10月16日
求学的熊猫  LV11 10月10日
wyx065747  LV67 10月1日
310834626  LV3 9月29日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友