首页 > 解决方案 > org.springframework.hateoas.ResourceSupport 未找到 spring boot

问题描述

我已经更新了 Spring Boot 版本。

   springBootVersion = "2.1.13.RELEASE"   to "2.3.11.RELEASE"

发布我收到 ResourceSupport not found 错误。我已经阅读了 hatoas 文档,并了解到这个特定的类被重命名为其他东西。我曾尝试升级以下依赖项,但没有帮助。

  compile "io.springfox:springfox-swagger-ui:3.0.0"
  compile "io.springfox:springfox-swagger2:3.0.0"
  compile 'io.springfox:springfox-boot-starter:3.0.0'

你能帮我解决这个问题吗?

标签: javaspringspring-boot

解决方案


我有同样的问题,并在 Spring Hateoas 文档中发现(参见https://docs.spring.io/spring-hateoas/docs/current/reference/html/#reference)你应该改变,ResourceSupport 现在是 RepresentationModel


推荐阅读