I want to convert a sqlResult mapped to a very complex Object to JSON in order to save it to a redis database a value. Now I'm a getting Error
java.lang.IllegalArgumentException: class 'xx' declares multiple JSON fields named 'XX'
How can I solve this problem without chaging the classes as mentioned in the error 'xx'?
Or are other libs avaiable, that are supporting converting object to and from JSON with supporting of multiple JSON fields names e.g. json-io?
I updated my project with the following suggestedd class class A declares multiple JSON fields in order to avoid multiple JSON fields.
But now I have got a another problem
nested exception is: java.lang.StackOverflowError Any suggestions for that problem? Because I am using a very large collection/object for the convertion.