【发布时间】:2020-03-20 02:04:47
【问题描述】:
我正在阅读 Spring in Action 5th。并添加 hatoas 超链接。这个类正在扩展org.springframework.hateoas.ResourceSupport 但是我找不到它。我正在使用 Spring Boot 版本 2.2.5.RELEASE
import org.springframework.hateoas.ResourceSupport;
import tacos.Taco;
@Relation(value = "taco", collectionRelation = "tacos")
public class TacoResource extends ResourceSupport {
private static final IngredientResourceAssembler ingredientAssembler = new IngredientResourceAssembler();
@Getter
private final String name;
那么这个版本中这个类的名称是什么,因为源代码使用的是旧版本,我认为是 2.0.2 M1
【问题讨论】:
标签: spring spring-boot spring-hateoas