1

我有 springfox swagger2,其中 http://localhost:8080/context/swagger-ui.html 工作正常。现在我已经修改了所有的更改,使它可以 open-api 运行。
使用:从 springfox swagger2 迁移到 springdoc openapi

现在我可以使用如下组名打开我的服务定义 json:

http://localhost:8080/context-path/v3/api-docs/groupName

但无法像之前使用 springfox 2.0 那样打开 swagger-ui.html

你能帮我吗,如何打开和应该是什么网址?
当我输入 http://localhost:8080/context/swagger-ui.html 时,它正在创建如下所示的新路由并且没有打开任何内容,404 错误。

http://localhost:8080/context/swagger-ui/index.html?configUrl=/context/v3/api-docs/swagger-config

请注意,我已经在我的项目中添加了 swagger-ui.html,因为它已经为 swagger 2.0 添加了

public void addResourceHandlers(ResourceHandlerRegistry registry) {
    registry.addResourceHandler("swagger-ui.html")
      .addResourceLocations("classpath:/META-INF/resources/");

    registry.addResourceHandler("/webjars/**")
      .addResourceLocations("classpath:/META-INF/resources/webjars/");

请帮助获得大摇大摆的主屏幕,以便我可以测试休息服务

4

1 回答 1

3

问题是 Swagger-UI 暴露在http://localhost:8080/swagger-ui.html

如果您希望 Swagger-UI 应位于上下文根目录下,请更新application.properties文件中的以下属性或其等效项。

springdoc.swagger-ui.path=/your-context-path/swagger-ui.html

属性列表可以在这里找到

于 2021-02-19T14:21:08.510 回答