当前位置:   article > 正文

【JAVA swagger】解决No mapping for GET /swagger-ui.html报错_no mapping for get /swagger-ui/index.html

no mapping for get /swagger-ui/index.html

完整代码在最后

一、报错
1.网页报错404
在这里插入图片描述2.代码报错
No mapping for GET /swagger-ui.html在这里插入图片描述

二、解决办法
1.版本回退
之前用的是swagger3.0.0和springboot3.0.6,始终没找到合适的解决办法,故将版本回退至swagger2.9.2和springboot2.7.11在这里插入图片描述

2.Spring Boot 2.6.X后与Swagger有版本冲突问题,需要在application.properties文件中写入spring.mvc.pathmatch.matching-strategy=ant_path_matcher
在这里插入图片描述
3.重写父类方法
在SwaggerConfig配置类中继承WebMvcConfigurer,然后重写addResourceHandlers方法

public class SwaggerConfig implements WebMvcConfigurer {
//    重写父类方法
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("swagger-ui.html")
                .addResourceLocations("classpath:/META-INF/resources/");
        registry.addResourceHandler("/webjars/**")
                .addResourceLocations("classpath:/META-INF/resources/webjars/");
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

3.以上配置完亲测可用
在这里插入图片描述
小插曲:之前继承的是WebMvcConfigurationSupport,导致浏览器无法显示中文,我也是新手入门没搞懂为什么,换继承WebMvcConfigurer后完美解决。
在这里插入图片描述

三、完整代码

package com.example.bsdemo.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
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;

//告诉Spring容器,这个类是一个配置类
@Configuration
//启用Swagger2功能
@EnableSwagger2
public class SwaggerConfig implements WebMvcConfigurer {
//    重写父类方法
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("swagger-ui.html")
                .addResourceLocations("classpath:/META-INF/resources/");
        registry.addResourceHandler("/webjars/**")
                .addResourceLocations("classpath:/META-INF/resources/webjars/");
    }

    //  配置Swagger2相关的bean
    @Bean
    public Docket createRestApi(){
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.basePackage("com"))  //com包下所有API都交给Swagger2管理
                .paths(PathSelectors.any()).build();
    }

    //  此处主要是API文档页面显示信息
    private ApiInfo apiInfo(){
        return new ApiInfoBuilder()
                .title("演示项目API") //标题
                .description("学习Swagger2的演示项目") //描述
                .version("1.0") //版本
                .build();
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/99103
推荐阅读
相关标签
  

闽ICP备14008679号