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

Katharsis adds powerful layer for RESTful endpoints providing implementenation of JSON:API standard

Results 76 katharsis-framework issues
Sort by recently updated
recently updated
newest added

I have these configuration. I want to add multiple version for same path i.e `http://my-doamin.com/v1/users` and `http://my-doamin.com/v2/users`. ``` file: application.properties katharsis.domainName=http://my-domain.com katharsis.pathPrefix=/v1 ``` ``` ... @JsonApiResourceRepository(UserPublicResource.class) public static UserService{ .....

question

If you declare a resource, but forget to declare a repository, Katharsis will happily try to invoke it, causing the NPE seen below. Instead katharsis should perform the null check,...

bug
easy PR

Hello. We have a simple upload servlet. We are trying to understand what's happening because when we enable katharsis on the project (in different prefix), the uploaded files got corrupted....

When trying to traverse relationships where the target entity has a `@JsonApiResource` annotation, I get an exception of `Resource of class not found: java.lang.Class` The code issue is fairly apparent....

bug

@BeanParam annoation is not supports Katharsis. Thanks, Kaleeswaran K

For example, I have a many-to-many relationship, and I want to get users that have specific tag id, I tried with `?filter[tags][id]=id` but it's not working. ``` class User {...

A large api can often have dozens of Resources. These resources are often very intertwined due to the `@JsonApiToMany` and `@JsonApiToOne` relationships among them. Often it is sufficient for a...

enhancement

I dont want to use filters in Katharsis supported format as below URL?filters[productaccounts][product_grp]=WL_CUST I want to use JAX-RS query parameter with name filters or filter or any name starts with...

It should be possible flexibly define the parameter names used by katharsis for pagination. As per the JSONAPI spec: > Note: JSON API is agnostic about the pagination strategy used...

enhancement

As discussed in gitter with @remmeier we need a more incremental path from `QueryParams` to `QuerySpec`. It should be possible to use `QueryParams` and `QuerySpec` repositories side by side in...