gpt4 book ai didi

java - 使用 Spring 在 Swagger UI 上收到 404 错误

转载 作者:行者123 更新时间:2023-12-04 01:33:51 24 4
gpt4 key购买 nike

我正在将 swagger UI 与 Spring boot 应用程序集成。当我点击 swagger-ui.html 时。我收到 404 错误。我的配置类如下:

@Configuration
@EnableSwagger2
//@Import(SwaggerConfiguration.class)
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.any())
.paths(PathSelectors.any())
.build();
}
...

错误信息:
{"status":404,"message":"HTTP 404 Not Found","link":"https://jersey.java.net/apidocs/2.8/jersey/javax/ws/rs/NotFoundException.html"}

最佳答案

我有一个类似的问题,其中/swagger-ui.html(或新的端点版本/swagger-ui/)返回 404,但/v2/api-docs 返回一个有效的 json。解决方案是将 swagger 版本从 3.0.0 降级。到 2.9.2。

关于java - 使用 Spring 在 Swagger UI 上收到 404 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50814372/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com