2

正如标题所示,有没有办法改变类型的招摇网址

localhost:8080/myapp/swagger.ui.html

进入一个网址

localhost:8080/docs

我使用 OpenApi3,到目前为止,在文档中我不知道如何更改“swagger-ui”。感谢您提供任何可能的答案

4

1 回答 1

3

使用文件springdoc.swagger-ui.path中的属性application.properties

如果您没有上述文件,您也可以通过在文件夹application.yml下创建文件来完成src/main/resources,并复制以下 YAML 属性

springdoc:
  swagger-ui:
    path: /docs
于 2020-11-13T14:57:15.190 回答