其他分享
首页 > 其他分享> > springboot配置swagger

springboot配置swagger

作者:互联网

1、环境

2、创建springboot项目,目录如下:

在这里插入图片描述

3、在SwaggerConfig里面配置swagger

@EnableSwagger2
@Configuration
public class SwaggerConfig {
    @Bean
    public Docket docket() {
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()// 通过.select()方法,去配置扫描接口,RequestHandlerSelectors配置如何扫描接口
                .apis(RequestHandlerSelectors.basePackage("com.hewei.controller"))
                .build();
    }

    //配置文档信息
    private ApiInfo apiInfo() {
        Contact contact = new Contact("");
        return new ApiInfo(
                "项目里面的API", // 标题
                "", // 描述
                "", // 版本
                "", // 组织链接
                contact, // 联系人信息
                "", // 许可
                "", // 许可连接
                new ArrayList<>()// 扩展
        );
    }

4、在application.yml里面配置以下代码

spring:
  mvc:
    pathmatch:
      matching-strategy: ant_path_matcher

配置第四步的原因是在springboot2.6.1中将SpringMVC 默认路径匹配策略从AntPathMatcher 更改为PathPatternParser,导致出错,解决办法是切换回原先的AntPathMatcher

标签:springboot,配置,AntPathMatcher,apiInfo,new,swagger,select
来源: https://blog.csdn.net/weixin_48678547/article/details/121939552