Reputation: 1631
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.
Upvotes: 1
Views: 30785
Reputation: 4924
You didn't post a very detailed question so I hope this will help you a bit:
A problem you can have is that the field already exists in a Class that you extend. In this case the field would already exist in Class B.
Say:
public class A extends B {
private BigDecimal netAmountTcy;
private BigDecimal netAmountPcy;
private BigDecimal priceTo;
private String segment;
private BigDecimal taxAmountTcy;
private BigDecimal taxAmountPcy;
private BigDecimal tradeFeesTcy;
private BigDecimal tradeFeesPcy;
// getter and setter for the above fields
}
where class B is something like (and maybe more duplicates of course):
public class B {
private BigDecimal netAmountPcy;
// getter and setter for the above fields
}
Just remove the field "netAmountPcy" Class A and you will still have the field (because it extends the class).
Upvotes: 15