Christian Bongiorno
Christian Bongiorno
Not sure why I ever said no. Katharsis should respect Jackson annotations. If it respects a mixin it should also respect the annotation - so that's weird for sure
This issue of plural and inflection came up several times. The pluralization needs to be at the `controller` level to make sense: If you think of this in HTTP terms,...
Thanks for all the debug. I will try to have a peek tomorrow On Thu, Jun 1, 2017, 12:26 PM phuo1032 wrote: > Hi, I am using springboot and encountered...
I am looking at our spring-boot example right now - I have `tasks` and `projects` and both respond correctly. I need some reproducible code. If you wanna submit a PR...
Agreed. Sharing interfaces is the wrong approach - that's an RPC approach not a REST approach. I didn't write it but welcome a PR.
It's pretty simple: JSONApi is about the pay AND the return codes AND the query params if I have an API on my server side of `public Iterator findAll(...)` what's...
I have a snippet of code that almost does the trick. I just started doing this a couple of weeks ago. The problem is that it currently requires a thread...
I can see about putting some code together On Mon, Dec 19, 2016, 2:51 PM Shannon Tan wrote: > @remmeier Any ideas on if/when this would > ship? > >...
``` JsonApiResponse response = new JsonApiResponse().setEntity(entity); ResourcePath jsonPath = new ResourcePath(entity.getClass().getAnnotation(JsonApiResource.class).type()); result = objectMapper.writeValueAsString(new ResourceResponseContext(response, jsonPath, new QueryParamsAdapter(new QueryParams()))); ``` The only problem here is you will need to swap...