英文:
Spring boot version 3.0.0 springdoc-openapi-ui dont work
问题
开放API依赖项
Spring Boot版本
我尝试启用Swagger OpenAPI SpringDoc-OpenAPI-UI:1.6.14,但不幸的是我无法做到,当我尝试访问http://localhost:8182/swagger-ui/时,我收到404错误。我的问题是我应该更改Spring Boot的版本吗?
英文:
open api dependencies
spring boot version
I try to enable swagger openapi springdoc-openapi-ui:1.6.14 but unfortunately I can not make that, when i try to access http://localhost:8182/swagger-ui/ I get error 404. My question is should i change the version of spring boot ?
答案1
得分: 2
你正在导入Springdoc 1,它只兼容Spring Boot 2。
对于Spring Boot 3,你需要使用Springdoc 2。
正确的Gradle导入是:
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2")
英文:
You're importing Springdoc 1, which is only compatible with Spring Boot 2.
For Spring Boot 3, you need to use Springdoc 2.
The correct gradle import is:
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2")
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论