crnk-framework icon indicating copy to clipboard operation
crnk-framework copied to clipboard

JSON API library for Java

Results 135 crnk-framework issues
Sort by recently updated
recently updated
newest added

Hello, depending on a race Condition I get stuck in an infinite Loop in the class PathBuilder (Version 3.1.20191113192440). The problem is located in the Method `findSelfOrSubtypeByField` at lines 221-223...

So user > gateway(crnk-client) > service Is there a way we can return the exact response/error the gateway receives from the service? Our issue stems from ClientStubBase.handleError(...) method. This is...

This issue is related to already closed issue with number 564. It was reproduced with Oracle WebLogic Server 12.2.1.3 and Toplink as JPA implementation. I also opened a Service Request...

orignally from @ckarthik17 Currently, ExceptionMapperRegistryBuilder always adds CrnkExceptionMapper as a default exception mapper for crnk client. So, even when I try to add an exception mapper by overriding getExceptionMapperRegistry(), always...

I was trying to enable the crnk-UI in my project (/browse/), but looks like the instruction in the document is out-dated. In the document, it says use below code to...

help wanted

Attached is an example project with three servers - ItemServer, OwnerServer, and Coordinator. [crnk-upgrade-issue.zip](https://github.com/crnk-project/crnk-framework/files/4244073/crnk-upgrade-issue.zip) Coordinator is the client facing part and it calls down to ItemServer and OwnerServer. Request to...

When passing an invalid date in the request body (e.g. `"birthDate" : "1992-05-32"`) a `ResourceException` is thrown ([`ResourceUpsert.java:154`](https://github.com/crnk-project/crnk-framework/blob/master/crnk-core/src/main/java/io/crnk/core/engine/internal/dispatcher/controller/ResourceUpsert.java#L178)) because the date cannot be deserialized to a LocalDate. This is handled...

I have a text input field which's input (a string) is compared with a field of an object using LIKE comparison. The compared field is of type java.util.UUID. I get...

Crnk (server) supports filtering a resource by an attribute of a one-to-many relationship. For example: `/projects?filter[tasks.creatorName]=Remo` (i.e. "I want to get all projects which have tasks created by Remo" or...

I have a need to convert an entity object to a Document object so it can be returned to user directly, but can not find out the obvious way. The...