gregwhitaker / catnap

Partial JSON response framework for RESTful web services
Apache License 2.0
55 stars 15 forks source link

Catnap ignores the JsonIgnoreProperties annotation and StackOverflowError occurs #24

Open ogok opened 4 years ago

ogok commented 4 years ago

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 enable the catnap, catnap ignores the annotation and is trying to render the friends of friends. StackOverflowError occurs because of infinite loop.