我应该使用什么来代替弃用的 CollectionModel?

What should I use instead of deprecated CollectionModel?

Spring 文档在这里告诉我:https://docs.spring.io/spring-hateoas/docs/1.2.2/reference/html/#migrate-to-1.0.changes.representation-models 我应该使用 CollectionModel 而不是 Resources class。但是当我这样做时,我的 IDE 告诉我 CollectionModel 已被弃用。喜欢这里:

我现在应该做什么或现在使用什么才能在 Spring 引导中实现 HATEOAS?

只有构造函数被弃用。 相反,您应该使用 CollectionModel public static <T> CollectionModel<T> of(Iterable<T> content,Iterable<Link> links)

中的静态方法

更多信息在这里: https://docs.spring.io/spring-hateoas/docs/current/api/org/springframework/hateoas/CollectionModel.html#CollectionModel-java.lang.Iterable-org.springframework.hateoas.Link...-