我在我的 Java 项目的 pom 文件中使用以下工件安装了 swagger-ui:
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<version>1.5.2</version>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-security</artifactId>
<version>1.5.2</version>
</dependency>
当我转到此 URL 时,我可以查看我的 RESTful 端点的 swagger ui
http://localhost:8081/swagger-ui/index.html?configUrl=/v3/api-docs/swagger-config
但不是这个链接
http://localhost:8081/swagger-ui/index.html
为什么是这样?如何将其更改回预期的 URL?