解决springdoc-openapi-ui(Swagger3)跳转默认界面问题 发表于 2024-12-28 11:50 分类于 搬砖笔记 , Spring 阅读次数: 本文字数: 477 阅读时长 ≈ 1 分钟 问题现象 项目正确引入springdoc-openapi-ui依赖,但是访问/swagger-ui/index.html界面时,跳转到了默认的界面,如下图所示: 解决方法 1、升级maven依赖为1.8.0以上: 12345<dependency> <groupId>org.springdoc</groupId> <artifactId>springdoc-openapi-ui</artifactId> <version>1.8.0</version></dependency> 2、增加springdoc的url配置: 12345springdoc: swagger-ui: enabled: true # 开启swagger界面 url: /cxhl/v3/api-docs # 自定义搜索路径 #path: swagger-ui.html # 自定义路径,默认为"/swagger-ui/index.html" 修改后的界面,如下图所示: 项目中的接口文档都出来了,完美解决!