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

I have a pair of resources `Channel` and `Message` for a chat application and want to fetch the messages for a channel. The URL structure looks like this: `/v0/channels/{channelId}/messages` I...

Help with the following, I am trying to get the total row count with Jpa, but always getting the dontMaintainCache(). JpaQueryExecutor executor = query.buildExecutor(qr.getQuerySpec()); Has anybody got this error before?...

When a request is made with POST call and with request content-type as "application/vnd.api+jsonqwerty" the call is going through and returning 201 success response. Ideally this should be validated and...

when we provide invalid data to type field for post/patch request, we get 500 Internal server error (internally RepositoryNotFoundException) because RepositoryNotFoundException extends InternalServerErrorException. we should get 404 and meaningful error...

Hello. I'm trying to run an empty setup with spring boot 2 and JPA so I can build my projects from scratch. The project builds without complaints but fails to...

Is there a reason crnk does not honor properties defined in inherited interfaces? We define the resource Api in interfaces and use Immutables to generate the implementations for our DTOs....

Fix for: https://github.com/crnk-project/crnk-framework/issues/648

I have a resource with this getter: ```java @JsonProperty("isInWork") public Boolean isInWork() { return {obtained from database} } ``` But when I do this query http://localhost:8080/api/my-resource?filter[isInWork]=true And debug my API...

Hi @remmeier Is it possible to use crnk for AWS lamda. We are not using spring, or any other framework like Vert.x, Servlet or JAX-RS. Its invocation of AWS function...

When you load the resource inside the JpaRepositoryBase.save(S resource), the returned resource is the same (by reference) passed as argument to the save method. You can check the running test...