swagger页面打开问题

目前两个项目A和B,A在本地和局域网上另一台linux机器上运行,swagger都没问题。项目B,在局域网上那台linux机器运行,swagger没问题,但是在本地IDEA上运行,swagger页面打开状况如下:

A和B用的2.9.2,都是springboot项目,配置都是一样的

@Configuration
@EnableSwagger2
public class SwaggerConfig {

    @Bean
    public Docket createRestApi() {
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.basePackage("com.myproj.modules"))
                //.apis(RequestHandlerSelectors.any())
                .paths(PathSelectors.any())
                .build();
    }

    @Value("${custom.version}")
    private String version;

    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                .title("文件服务Api")
                .description("文件服务")
                .termsOfServiceUrl("http://xxx.xxx.xx")
                .version(version)
                .build();
    }
}

图片描述

http://localhost:8773/webjars 下的很多文件(但是http://localhost:8773/webjars/springfox-swagger-ui/springfox.js 则可以获取)都不能访问。都 404,加了下面代码也不管用

@Configuration
public class WebMvcConfig 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/");
    }
}

图片描述

阅读 6.6k
2 个回答

拦截器,nginx,这些看一下


目测是 swagger 渲染未完成,由于可以渲染说明请求可以正常到达服务器,问题应该是spring-boot和swagger整合配置出现了问题,我这里提供一个我写的github项目
https://github.com/gengniao/S...

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题