package com.test.config;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Value;
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;
/**
* Swagger配置
* @author xietao
* 2022年6月21日 下午4:38:26
*
*/
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Value("${swagger.version}")
private String version;
@Value("${swagger.enabled:true}")
private boolean enabled;
@Bean
public Docket createRestApi() {
return new Docket(DocumentationType.SWAGGER_2)
.enable(enabled)
.apiInfo(apiInfo())
.select()
//加了ApiOperation注解的方法,生成接口文档
.apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))
//包下的类,生成接口文档
//.apis(RequestHandlerSelectors.basePackage("io.renren.modules.job.controller"))
.paths(PathSelectors.any())
.build();
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("spring-boot-signature SpringBoot2API接口文档")
.description("测试文档")
.termsOfServiceUrl("http://localhost:8080/testservice/doc.html")
.version(version)
.build();
}
}
涛哥是个大帅比
- 粉丝: 398
- 资源: 33
最新资源
- (源码)基于Java的账号管理系统.zip
- python项目6.爬取豆瓣排行榜电影数据(含GUI界面版).zip
- 微信小程序下拉选择组件
- pythonx项目5.爬取5K分辨率超清唯美壁纸.zip
- python项目4.每天不同时间段通过微信发消息提醒女友.zip
- python课程设计3.淘宝已买到的宝贝数据爬虫(已模拟登录).zip
- 时间序列学习笔记-3-A
- C#ASP.NET医药ERP管理系统源码 药品销售管理系统源码数据库 SQL2008源码类型 WebForm
- python课设项目2.天猫商品数据爬虫(已模拟登录).zip
- (源码)基于Arduino和LCD Smartie的计算机信息显示系统.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈