SpringBoot 2.6.x高版本和swagger2版本冲突升级版本

1. 使用swagger3.0版本以前的可以参考我的上篇文章解决

SpringBoot2.6.x高版本与swagger2版本冲突问题解决

2. 现在使用swagger 3.0版本的解决方案: (仅3步)

2.1 : 添加 SwaggerBeanPostProcessor

@Component
public class SwaggerBeanPostProcessor implements BeanPostProcessor {
    @Override
    public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
        if (bean instanceof WebMvcRequestHandlerProvider || bean instanceof WebFluxRequestHandlerProvider)
        {
            List<RequestMappingInfoHandlerMapping> handlerMappings = getHandlerMappings(bean);
            customizeSpringfoxHandlerMappings(handlerMappings);
        }
        return bean;
    }

    private <T extends RequestMappingInfoHandlerMapping> void customizeSpringfoxHandlerMappings(List<T> mappings) {
        List<T> copy = mappings.stream()
                .filter(mapping -> mapping.getPatternParser() == null)
                .collect(Collectors.toList());
        mappings.clear();
        mappings.addAll(copy);
    }

    @SuppressWarnings("unchecked")
    private List<RequestMappingInfoHandlerMapping> getHandlerMappings(Object bean) {
        try {
            Field field = ReflectionUtils.findField(bean.getClass(), "handlerMappings");
            field.setAccessible(true);
            return (List<RequestMappingInfoHandlerMapping>) field.get(bean);
        }
        catch (IllegalArgumentException | IllegalAccessException e) {
            throw new IllegalStateException(e);
        }
    }
}

 2.2: 添加swagger3Config

@Configuration
@EnableOpenApi // 注意添加此注解
public class Swagger3Config {


    @Bean
    public Docket createRestApi(){
        return new Docket(DocumentationType.OAS_30)
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))
                .paths(PathSelectors.any())
                .build();
    }

    private ApiInfo apiInfo(){
        return new ApiInfoBuilder()
                .title("Swagger3接口文档")
                .description("适用于前后端分离统一的接口文档")
                .version("1.0")
                .build();
    }

}

3. 配置文件中添加: spring.mvc.pathmatch.matching-strategy=ant-path-matcher

  • 2
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Swagger 是一个接口文档生成工具,可以方便地生成 RESTful API 文档。在 Spring Boot 中,使用 Swagger 也非常简单,只需要添加对应的依赖,然后在配置文件中进行简单的配置即可。 下面是在 Spring Boot 中添加 Swagger 的步骤: 1. 在 pom.xml 文件中添加 Swagger 的依赖: ``` <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> ``` 2. 在 Spring Boot 的启动类上添加 `@EnableSwagger2` 注解,启用 Swagger: ``` @SpringBootApplication @EnableSwagger2 public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } } ``` 3. 添加 Swagger 配置类,配置 Swagger 的基本信息: ``` @Configuration @EnableSwagger2 public class SwaggerConfig { @Bean public Docket api() { return new Docket(DocumentationType.SWAGGER_2) .select() .apis(RequestHandlerSelectors.basePackage("com.example.demo")) .paths(PathSelectors.any()) .build() .apiInfo(apiInfo()); } private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("API 文档") .description("API 接口文档") .version("1.0.0") .build(); } } ``` 其中,`@Bean` 注解的 `Docket` 对象是 Swagger 的主要配置对象,可以设置 API 的基本信息,如文档标题、版本号等。`apis` 方法和 `paths` 方法可以设置 API 的扫描范围,这里的示例是扫描 `com.example.demo` 包下的所有 API。 4. 启动应用程序,在浏览器中访问 `http://localhost:8080/swagger-ui.html`,即可看到自动生成的 API 文档。 以上就是在 Spring Boot 中使用 Swagger 的简单步骤,你还可以根据自己的需求进行更加详细的配置。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值