我有一个 SpringBoot 2 应用程序,它使用 Couchbase 作为数据库、Spring-Boot 和 Spring-Data 以及 Lombok 的 getter 和 equals 方法我已经创建了这个存储库
@ViewIndexed(designDoc = "bendicionesDoc")
public interface BenRepository extends CouchbaseRepository<BendicionesDoc, String> {
@Query("#{#n1ql.selectEntity} where #{#n1ql.filter} AND ANY uuid IN data.identifier SATISFIES uuid = $1 END")
List<BendicionesDoc<Item>> findById(Identifier identifier);
}
这里是使用 Lombok 库创建的所有对象
public class BendicionesDoc<T>implements Serializable {
@Field
private T data;
}
和
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@JsonInclude(NON_NULL)
public class Item {
private List<Identifier> identifier;
}
和
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@JsonInclude(NON_NULL)
@EqualsAndHashCode
public class Identifier {
private String id;
private MasterServant idContext;
private MasterServant idScope;
}
和
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@JsonInclude(NON_NULL)
@EqualsAndHashCode(onlyExplicitlyIncluded = true)
public class MasterServant {
private String context;
@JsonValue
@EqualsAndHashCode.Include
private String value;
private Name valueDescription;
@JsonCreator
public MasterServant(String value) {
this.value = value;
}
}
但是当我运行存储库查询时,我收到了这个错误:
java.lang.IllegalArgumentException: Unsupported type for JsonArray: class com.bendiciones.Identifier