Spring Boot 版本 3.0.0 springdoc-openapi-ui 无法正常工作。

huangapple go评论67阅读模式
英文:

Spring boot version 3.0.0 springdoc-openapi-ui dont work

问题

开放API依赖项

Spring Boot 版本 3.0.0 springdoc-openapi-ui 无法正常工作。

Spring Boot版本

Spring Boot 版本 3.0.0 springdoc-openapi-ui 无法正常工作。

我尝试启用Swagger OpenAPI SpringDoc-OpenAPI-UI:1.6.14,但不幸的是我无法做到,当我尝试访问http://localhost:8182/swagger-ui/时,我收到404错误。我的问题是我应该更改Spring Boot的版本吗?

英文:

open api dependencies

Spring Boot 版本 3.0.0 springdoc-openapi-ui 无法正常工作。

spring boot version

Spring Boot 版本 3.0.0 springdoc-openapi-ui 无法正常工作。

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")

huangapple
  • 本文由 发表于 2023年2月27日 02:57:24
  • 转载请务必保留本文链接:https://go.coder-hub.com/75574324.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定