swagger与springboot的集成

swagger与Springboot的集成

引入依赖

在maven环境中:

在pom.xml中引入如下配置

<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger2</artifactId>
    <version>2.9.2</version>
</dependency>
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger-ui</artifactId>
    <version>2.9.2</version>
</dependency>

在gradle环境中:(我使用的)

在build.gradle中 添加:

// https://mvnrepository.com/artifact/io.springfox/springfox-swagger2
implementation group: 'io.springfox', name: 'springfox-swagger2', version: '2.9.2'
// https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui
implementation group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.9.2'

最简使用

创建config配置类

用来创建swagger相关的配置信息

开启swagger2

@Configuration
@EnableSwagger2
public class SwaggerConfig {
}

其实这样swagger就能够访问了

编写controller

@RestController
public class MyController {

    @RequestMapping("/h1")
    public String h1(){
        return "hello";
    }

}

直接测试运行

在这里插入图片描述

/swagger-ui.html

可以直接访问到当前的这个页面

在这里插入图片描述

扩展使用

一般扩展…都是针对于上面的那个页面,有些时候要将以上一些信息隐藏或者修改一些数据

而这些数据保存在哪儿呢?

这里我们需要在config中添加一些东西:

@Configuration
@EnableSwagger2
public class SwaggerConfig {

    @Bean
    public Docket docket(){
        return new Docket(DocumentationType.SWAGGER_2);
    }

}

向springcontext中注册一个Docket也就是swagger记事,其实也就主要是对于上面页面的一个记事

查看new Docket()构造函数源码

public Docket(DocumentationType documentationType) {
  this.documentationType = documentationType;
}

既然如此,那么就应该创建一个DocumentType对象

神奇的是,DocumentType类中三个有静态属性,能返回构造的DocumentType

public static final DocumentationType SWAGGER_12 = new DocumentationType("swagger", "1.2");
public static final DocumentationType SWAGGER_2 = new DocumentationType("swagger", "2.0"); 
public static final DocumentationType SPRING_WEB = new DocumentationType("spring-web", "1.0");

一般用swagger2.0即可

对于Docket.java

public Docket extensions(List<VendorExtension> vendorExtensions) {
    this.vendorExtensions.addAll(vendorExtensions);
    return this;
}

public Docket apiInfo(ApiInfo apiInfo) {
    this.apiInfo = defaultIfAbsent(apiInfo, apiInfo);
    return this;
}

public Docket securitySchemes(List<? extends SecurityScheme> securitySchemes) {
    this.securitySchemes = securitySchemes;
    return this;
}

public Docket securityContexts(List<SecurityContext> securityContexts) {
    this.securityContexts.addAll(securityContexts);
    return this;
}

public Docket groupName(String groupName) {
    this.groupName = defaultIfAbsent(groupName, this.groupName);
    return this;
}

public Docket pathProvider(PathProvider pathProvider) {
    this.pathProvider = pathProvider;
    return this;
}

public Docket globalResponseMessage(RequestMethod requestMethod,
                                    List<ResponseMessage> responseMessages) {

    this.responseMessages.put(requestMethod, responseMessages);
    return this;
}

public Docket globalOperationParameters(List<Parameter> operationParameters) {
    this.globalOperationParameters.addAll(nullToEmptyList(operationParameters));
    return this;
}

public Docket ignoredParameterTypes(Class... classes) {
    this.ignorableParameterTypes.addAll(Arrays.asList(classes));
    return this;
}

public Docket produces(Set<String> produces) {
    this.produces.addAll(produces);
    return this;
}

public Docket consumes(Set<String> consumes) {
    this.consumes.addAll(consumes);
    return this;
}

@Incubating("2.3")
public Docket host(String host) {
    this.host = defaultIfAbsent(host, this.host);
    return this;
}

public Docket protocols(Set<String> protocols) {
    this.protocols.addAll(protocols);
    return this;
}

public Docket alternateTypeRules(AlternateTypeRule... alternateTypeRules) {
    this.ruleBuilders.addAll(from(newArrayList(alternateTypeRules)).transform(identityRuleBuilder()).toList());
    return this;
}

public Docket operationOrdering(Ordering<Operation> operationOrdering) {
    this.operationOrdering = operationOrdering;
    return this;
}

public Docket directModelSubstitute(final Class clazz, final Class with) {
    this.ruleBuilders.add(newSubstitutionFunction(clazz, with));
    return this;
}

public Docket genericModelSubstitutes(Class... genericClasses) {
    for (Class clz : genericClasses) {
        this.ruleBuilders.add(newGenericSubstitutionFunction(clz));
    }
    return this;
}

public Docket useDefaultResponseMessages(boolean apply) {
    this.applyDefaultResponseMessages = apply;
    return this;
}

public Docket apiListingReferenceOrdering(Ordering<ApiListingReference> apiListingReferenceOrdering) {
    this.apiListingReferenceOrdering = apiListingReferenceOrdering;
    return this;
}

public Docket apiDescriptionOrdering(Ordering<ApiDescription> apiDescriptionOrdering) {
    this.apiDescriptionOrdering = apiDescriptionOrdering;
    return this;
}

public Docket enable(boolean externallyConfiguredFlag) {
    this.enabled = externallyConfiguredFlag;
    return this;
}

public Docket forCodeGeneration(boolean forCodeGen) {
    if (forCodeGen) {
        genericsNamingStrategy = new CodeGenGenericTypeNamingStrategy();
    }
    return this;
}

public Docket pathMapping(String path) {
    this.pathMapping = Optional.fromNullable(path);
    return this;
}

@Incubating("2.1.0")
public Docket enableUrlTemplating(boolean enabled) {
    this.enableUrlTemplating = enabled;
    return this;
}

public Docket additionalModels(ResolvedType first, ResolvedType... remaining) {
    additionalModels.add(first);
    additionalModels.addAll(newHashSet(remaining));
    return this;
}

public Docket tags(Tag first, Tag... remaining) {
    tags.add(first);
    tags.addAll(newHashSet(remaining));
    return this;
}

由于以上是返回的this,那么可以进行链式调用,因此在编写swagger配置类的时候可以这样写:

 @Bean
public Docket docket(){
    return new Docket(DocumentationType.SWAGGER_2).groupName("这是组名")
        .apiInfo(new ApiInfo("标题", "description描述",
                             "版本0.1",
                             "服务条款网址",
                             "contactName联系人",
                             "license许可","licenseUrl"))
        .useDefaultResponseMessages(true)
        .forCodeGeneration(false)
        .select()
        .apis(RequestHandlerSelectors.basePackage("com.xqnode.learning.controller"))
        .paths(PathSelectors.any())
        .build();
}

然后这里面的一些内容,具体的使用可以根据上面的方法源码和下面的属性去修改

在这里插入图片描述

反正说实话,我觉得apifox比这个好用

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要在Spring Boot集成Swagger,你需要做以下几个步骤: 1. 首先,确保你使用的是Spring Boot 2.5.x及之前的版本。因为从Spring Boot 2.6.x开始,Swagger已经从Spring Boot中移除了。 2. 在你的Spring Boot应用中添加Swagger的依赖。在pom.xml文件中,添加以下依赖: ```xml <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> <version>3.0.0</version> </dependency> ``` 3. 在启动类上添加`@EnableSwagger2`注解。这个注解会启用Swagger的功能。你可以将这个注解直接添加到你的Spring Boot启动类上,或者创建一个单独的配置类,在配置类中添加这个注解。 4. 配置Swagger的相关属性。你可以在`application.properties`或`application.yml`文件中添加以下配置: ```yaml springfox.documentation.swagger.v2.path=/swagger springfox.documentation.swagger.ui.enabled=true ``` 这些配置将指定Swagger的路径和UI的启用状态。 5. 编写API文档。在你的控制器类中,使用Swagger的注解来描述你的API接口。例如,你可以使用`@Api`注解来给你的控制器类添加一个API的描述,<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* *3* [SpringBoot教程(十六) | SpringBoot集成swagger(全网最全)](https://blog.csdn.net/lsqingfeng/article/details/123678701)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值