Swagger page opening problem

currently two projects, An and BMagee A, are running on another linux machine on the local and local area network, and the swagger is fine. Project B, running on the linux machine on the LAN, swagger is fine, but running on the local IDEA, the swagger page opens as follows:

An and B use 2.9.2, both of which are springboot projects with the same configuration

@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


May.31,2022

interceptor, nginx, take a look at these


< hr >

Visual observation is that swagger rendering is not completed. Since the request can be rendered to the server normally, the problem should be that there is a problem with the integrated configuration of spring-boot and swagger. I provide a github project I wrote
https://github.com/gengniao/S...

.
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b30b58-2bd31.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b30b58-2bd31.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?