swagger 使用springdocopenapi3实现基于路径的路由

enxuqcxy  于 2022-11-06  发布在  Spring
关注(0)|答案(1)|浏览(121)

我们为其中一个应用程序设置了基于路径的路由,如下所示

https://api.example.com/mailservice

正是在这个端点上,API才能够调用MailService应用程序。但是,当我从这个端点导航到swagger-ui页面时,我看不到它的加载:

https://api.example.com/mailservice/swagger-ui/index.html

但我得到以下页面:

不确定是否有什么我错过了,一些帮助这将是有帮助的!

hgqdbh6s

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/

相关问题