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?

link|improve this question

Did you mean to paste in some code for us to help you resolve your issue? – Russell Jul 27 '10 at 3:14
feedback

6 Answers

up vote 2 down vote accepted

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.

link|improve this answer
I did the same and it works but not sure will it work in all mapping scenarios. At least for now I am well set and will keep thinking on having more elegant idea – Leslie Norman Jul 27 '10 at 14:22
Of course they can -- there just isn't native data type or structure for this. But anything can be represented in XML, JSON, or most other data formats. – StaxMan Jul 29 '10 at 6:07
1  
I'm curious - how would you represent a circular reference in JSON? – matt b Jul 29 '10 at 12:05
Multiple ways: keep in mind that generally it's not just JSON, but combination of JSON and some metadata, most commonly class definitions you use to bind to/from JSON. For JSON it's just question of whether to use object identity of some kind, or recreate linkage (Jackson lib for example has a specific way to represent parent/child linkage). – StaxMan Sep 27 '10 at 6:25
feedback

I rely on Google JSON To handle this kind of issue by using The feature

Excluding Fields From Serialization and Deserialization

Suppose a bi-directional relationship between A and B class as follows

public class A implements Serializable {

    private B b;

}

And B

public class B implements Serializable {

    private A a;

}

Now use GsonBuilder To get a custom Gson object as follows (Notice setExclusionStrategies method)

Gson gson = new GsonBuilder()
    .setExclusionStrategies(new ExclusionStrategy() {

        public boolean shouldSkipClass(Class<?> clazz) {
            return (clazz == B.class);
        }

        /**
          * Custom field exclusion goes here
          */
        public boolean shouldSkipField(FieldAttributes f) {
            return false;
        }

     })
    /**
      * Use serializeNulls method if you want To serialize null values 
      * By default, Gson does not serialize null values
      */
    .serializeNulls()
    .create();

Now our circular reference

A a = new A();
B b = new B();

a.setB(b);
b.setA(a);

String json = gson.toJson(a);
System.out.println(json);

Take a look at GsonBuilder class

link|improve this answer
Thank you Arthur for your kind suggestion but the actual question is what is the best way to build so called generic "shouldSkipClass" method. For now I worked on matt's idea and resolved my issue but still skeptic, in future this solution may break in certian scenarios. – Leslie Norman Jul 27 '10 at 14:26
Doesn't "ExclusionStrategy" need to be followed by "()" ? – luke Sep 16 '11 at 14:55
@luke Yes, Thank you! – Arthur Ronald F D Garcia Sep 16 '11 at 18:05
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.

link|improve this answer
feedback

In addressing this problem, I took the following approach (standardizing the process across my application, making the code clear and reusable):

  1. Create an annotation class to be used on fields you'd like excluded
  2. Define a class which implements Google's ExclusionStrategy interface
  3. Create a simple method to generate the GSON object using the GsonBuilder (similar to Arthur's explanation)
  4. Annotate the fields to be excluded as needed
  5. Apply the serialization rules to your com.google.gson.Gson object
  6. Serialize your object

Here's the code:

1)

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.METHOD})
public @interface GsonExclude {

}

2)

import com.google.gson.ExclusionStrategy;
import com.google.gson.FieldAttributes;

public class GsonExclusionStrategy implements ExclusionStrategy{

    private final Class<?> typeToExclude;

    public GsonExclusionStrategy(Class<?> clazz){
        this.typeToExclude = clazz;
    }

    @Override
    public boolean shouldSkipClass(Class<?> clazz) {
        return ( this.typeToExclude != null && this.typeToExclude == clazz )
                    || clazz.getAnnotation(GsonExclude.class) != null;
    }

    @Override
    public boolean shouldSkipField(FieldAttributes f) {
        return f.getAnnotation(GsonExclude.class) != null;
    }

}

3)

static Gson createGsonFromBuilder( ExclusionStrategy exs ){
    GsonBuilder gsonbuilder = new GsonBuilder();
    gsonbuilder.setExclusionStrategies(exs);
    return gsonbuilder.serializeNulls().create();
}

4)

public class MyObjectToBeSerialized implements Serializable{

    private static final long serialVersionID = 123L;

    Integer serializeThis;
    String serializeThisToo;
    Date optionalSerialize;

    @GsonExclude
    @ManyToOne(fetch=FetchType.LAZY, optional=false)
    @JoinColumn(name="refobj_id", insertable=false, updatable=false, nullable=false)
    private MyObjectThatGetsCircular dontSerializeMe;

    ...GETTERS AND SETTERS...
}

5)

In the first case, null is supplied to the constructor, you can specify another class to be excluded - both options are added below

Gson gsonObj = createGsonFromBuilder( new GsonExclusionStrategy(null) );
Gson _gsonObj = createGsonFromBuilder( new GsonExclusionStrategy(Date.class) );

6)

MyObjectToBeSerialized _myobject = someMethodThatGetsMyObject();
String jsonRepresentation = gsonObj.toJson(_myobject);

or, to exclude the Date object

String jsonRepresentation = _gsonObj.toJson(_myobject);
link|improve this answer
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.

link|improve this answer
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.

  1. Retrieve the results from datasource.
  2. Iterate the list and make sure the serialBean is not null, and then
  3. Set productBean.serialBean.productBean = null;
  4. Then try to use gson.toJson();

now the problem is over.

Thank U...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.