gpt4 book ai didi

spring - 更新到最新版本后替换@EnableSwagger2

转载 作者:行者123 更新时间:2023-12-03 15:34:55 25 4
gpt4 key购买 nike

我迁移到最新的 springfox-swagger2版本2.10.0但看起来像 @EnableSwagger2已弃用。
为了在 Spring Boot 项目中启用 Swagger,我应该使用什么注释? @EnableSwagger2WebMvc ?

最佳答案

@EnableSwagger2 在 swagger 2.10+ 中被弃用
@EnableSwagger2WebMvc 在 3.0.0+ 中已弃用
有趣但真实:)
现在您可以在 Spring 5 MVC 中使用以下依赖项

<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>

  • 删除对 springfox-swagger2 的显式依赖
  • 删除@EnableSwagger2 注释
  • 添加 springfox-boot-starter 依赖项

  • 见: https://github.com/springfox/springfox

    关于spring - 更新到最新版本后替换@EnableSwagger2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62539860/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com