catnap icon indicating copy to clipboard operation
catnap copied to clipboard

Partial JSON response framework for RESTful web services

Results 15 catnap issues
Sort by recently updated
recently updated
newest added

[Incremental compilation](https://docs.gradle.org/current/userguide/performance.html#incremental_compilation). Gradle recompile only the classes that were affected by a change. This feature is the default since Gradle 4.10. For an older versions, we can activate it by...

class Person { @JsonIgnoreProperties("friends") private List friends; } I have a class just like above. Jackson ignores the friends of the friends when the catnap is disabled. But if I...

bug

Add a library that provides catnap support in Micronaut applications. https://github.com/micronaut-projects/micronaut-core

enhancement

I have very simple case of including catnap for spring boot to filter few fields. Though end results are not interrupted, i don't see catnap being active and filtering fields....

bug

Getting all fields by reflection on every execution just take too much time. Added new CachingModelBuilder which will use reflection only the first time when the model is used.

I'm working on a Spring REST project and wanted to utilize catnap features. However it seems not fully working if i use PagingAndSortingRepository though i found a work around for...

Update catnap-spring and catnap-springboot to use the latest version of Spring.

enhancement

Hello I'm having some problem while using catnap with Springboot it seems that the DefaultModelBuilder is getting stuck while filtering the object, it goes into an endless loop while and...

bug

When trying to use CatNap with Joda DateTimes, we have a couple issues. Without the "fields" parameter on the request, the DateTime is serialized normally: `"2017-06-02T19:27:06.000Z"` When adding the "fields"...

bug

https://github.com/gregwhitaker/catnap/blob/b637dd505b97894875f9e459aee6bb81570438d3/catnap-core/src/main/java/com/github/gregwhitaker/catnap/core/query/model/CatnapEqualityExpression.java#L80 hi Greg, In the following response scenario if the filter key is not available in some node then I am getting null pointer exception. Could you please check this...

bug