我们将crnk用于json-api,它们都在服务器端作为客户端实现。
jpa绑定的服务器实现是否支持子关系过滤器?
我们要过滤所有在特定开始时间后发生事件的系列。
我们将json-api和JPA实体类分开。请参阅下面的json-api作为实体类
例如我使用的网址(由crnk客户端代码生成):
EpgShow?include[EpgShow]=titles&filter[EpgShow][titles.startTime][GE]=2018-05-04T12:30:22+02:00
我们收到的错误是:
{
errors: [
{
status: "500",
title: "INTERNAL_SERVER_ERROR",
detail: "failed to resolve path [titles, startTime]"
}
]
}
类实现:
@JsonApiResource(type = "EpgShow")
public class EpgSeriesDto {
@JsonApiId
private Integer serieId;
@JsonApiRelation(opposite = "epgShow", lookUp = LookupIncludeBehavior.AUTOMATICALLY_WHEN_NULL, serialize = SerializeType.ONLY_ID, repositoryBehavior = RelationshipRepositoryBehavior.FORWARD_OWNER)
private Set<EpgTitleDto> titles;
}
@JsonApiResource(type = "EpgTitle")
@Data
public class EpgTitleDto {
@JsonApiId
private Long id;
@JsonApiRelation(opposite = "titles", lookUp = LookupIncludeBehavior.AUTOMATICALLY_WHEN_NULL, serialize = SerializeType.ONLY_ID)
private EpgSeriesDto epgShow;
}
@Entity
public class Serie {
@Id
@GeneratedValue(strategy = IDENTITY)
@Column(name = "serie_id", unique = true, nullable = false)
private Integer serieId;
@OneToMany(fetch = FetchType.LAZY, mappedBy = "epgShow")
private Set<Event> titles = new HashSet<Event>(0);
}
@Entity
public class Event {
@Column(name = "start_time")
private ZonedDateTime startTime;
@ManyToOne(fetch = FetchType.EAGER)
@JoinColumn(name = "serie_id")
private Serie epgShow;
}
答案 0 :(得分:0)
有三种不同的过滤器:
支持前两个,而不是直接支持最后一个。对于以后的版本,到目前为止,它支持“计算”属性,其中的值是从Criteria API或QueryDSL表达式派生的,该表达式允许任意复杂的SQL。那些反过来又可以返回一个简单的结果,可以对其进行过滤和排序。在此示例中,可以是主资源上的minStartTime和maxStartTime。
但是,如果需要,还可以添加对过滤多值关系的支持。一种可能是利用EXISTS子查询。或者更高级的可能支持不同的策略。在这方面的公关将受到欢迎。