我如何使用 OpenApi 自定义 swagger-ui.html url
How can i customize swagger-ui.html url with OpenApi
如题所示,有没有办法改变url类型的swagger
localhost:8080/myapp/swagger.ui.html
变成url
localhost:8080/docs
我使用 OpenApi3,到目前为止,在文档中我不知道如何更改“swagger-ui”。感谢任何可能的答案
在您的 application.properties
文件中使用 属性 springdoc.swagger-ui.path
。
如果没有上述文件,也可以在src/main/resources
文件夹下创建application.yml
文件,复制下面的YAML 属性
springdoc:
swagger-ui:
path: /docs
如题所示,有没有办法改变url类型的swagger
localhost:8080/myapp/swagger.ui.html
变成url
localhost:8080/docs
我使用 OpenApi3,到目前为止,在文档中我不知道如何更改“swagger-ui”。感谢任何可能的答案
在您的 application.properties
文件中使用 属性 springdoc.swagger-ui.path
。
如果没有上述文件,也可以在src/main/resources
文件夹下创建application.yml
文件,复制下面的YAML 属性
springdoc:
swagger-ui:
path: /docs