내 REST API에 Kathatrsis를 사용하고 있습니다. 나는 또한 JSONApi 스펙이 처음이다. 나는 내 인생을 위해 @JsonApiFindAllWithIds
방법을 호출하는 URL 패턴을 알아낼 수 없다.Katharsis JSONApi 호출 JsonApiFindAllWithIds
@JsonApiFindAllWithIds
public Iterable<ThriftType> findAll(Iterable<String> iterable, QueryParams queryParams) {
내가 URL을 호출하는 경우 (내 자원은 테스트라고합니다) :
예를 들어,이 같은 주석이 말할
http://localhost:8080/test/1?filter[test][otherId][EQ]=9
는 내가 그 방법을 칠 기대, 1
을 포함하는 반복 가능한 목록과 내 필터를 포함하는 쿼리 매개 변수 개체가 있습니다.
@JsonApiFindOne
public ThriftType findOne(String id) {
당신이 나에게 내 @JsonApiFindAllWithIds
방법을 공격하는 적절한 URL 형식을 말할 수 :
그러나, 내 @JsonApiFindOne
방법을 설명 호출?