Praytic

Results 6 comments of Praytic

If someone also experiencing the same issue here's the temporary fix. You can put the `@JsonView` annotation on every method's parameter. ``` @JsonCreator public Obj(@JsonProperty("a") String a, @JsonProperty("b") @JsonView(View1.class) String...

Hi @darrachequesne , I have read the documentation for the `SearchBuilder`, but I'm still not completely sure how it should be applied on the server-side. Could you give some hints?

I have an idea of creating multiple `enum`s which are mapped to specific `CriteriaBuilder` methods. Do you think it will be a good design decision?

For example: ```java @Data @NoArgsConstructor @AllArgsConstructor public static class Criteria { private Condition condition; private String data; private String origData; private String type; private List value; private String logic; private...

I don't see Editor implementation in this repository. Do you mean that it should be implemented first?

I think, as a part of this effort, `@JsonPropertyDescription` annotation can also be taken into the account.