I am writing a serializer to serialize POJO to JSON but stuck in circular reference problem. In hibernate bidirectional one-to-many relation, parent references child and child references back to parent and here my serializer dies. (see example code below)
How to break this cycle? Can we get owner tree of an object to see whether object itself exists somewhere in its own owner hierarchy? Any other way to find if the reference is going to be circular? or any other idea to resolve this problem?
| |||
feedback
|
|
Can a bi-directional relationship even be represented in JSON? Some data formats are not good fits for some types of data modelling. One method for dealing with cycles when dealing with traversing object graphs is to keep track of which objects you've seen so far (using identity comparisons), to prevent yourself from traversing down an infinite cycle. | |||||||||||
feedback
|
|
I rely on Google JSON To handle this kind of issue by using The feature Suppose a bi-directional relationship between A and B class as follows
And B
Now use GsonBuilder To get a custom Gson object as follows (Notice setExclusionStrategies method)
Now our circular reference
Take a look at GsonBuilder class | |||||||
feedback
|
|
Jackson 1.6 (released september 2010) has specific annotation-based support for handling such parent/child linkage, see http://wiki.fasterxml.com/JacksonFeatureBiDirReferences. You can of course already exclude serialization of parent link already using most JSON processing packages (jackson, gson and flex-json at least support it), but the real trick is in how to deserialize it back (re-create parent link), not just handle serialization side. Although sounds like for now just exclusion might work for you. EDIT (April 2012): Jackson 2.0 now supports true identity references, so you can solve it this way also. | ||||
|
feedback
|
|
In addressing this problem, I took the following approach (standardizing the process across my application, making the code clear and reusable):
Here's the code: 1)
2)
3)
4)
5) In the first case, null is supplied to the constructor, you can specify another class to be excluded - both options are added below
6)
or, to exclude the Date object
| ||||
|
feedback
|
|
eugene's annotation based solution is ok, but there is no need for additional annotation and ExclusionStrategy implementation in this case. Just use Java 'transient' keyword for that. It works for standard Java object serialization but also Gson respects it. | |||
|
feedback
|
|
The answer is very simple. For example ProductBean has got serialBean. The mapping would be bi-directional relationship. now if we try to use gson.toJson(), it will end up with circular reference. To avoid the problem.
now the problem is over. Thank U... | |||
|
feedback
|