我们为其中一个应用程序设置了基于路径的路由,如下所示
https://api.example.com/mailservice
正是在这个端点上,API才能够调用MailService应用程序。但是,当我从这个端点导航到swagger-ui页面时,我看不到它的加载:
https://api.example.com/mailservice/swagger-ui/index.html
但我得到以下页面:
不确定是否有什么我错过了,一些帮助这将是有帮助的!
hgqdbh6s1#
它是springboot3吗?如果是,springdoc openapi应该使用版本2。pom.xml
<dependency> <groupId>org.springdoc</groupId> <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> <version>2.0.0-RC1</version> </dependency>
https://springdoc.org/v2/
1条答案
按热度按时间hgqdbh6s1#
它是springboot3吗?如果是,springdoc openapi应该使用版本2。
pom.xml
https://springdoc.org/v2/