I retrieve a list of Brothers using hibernate
public class Brother { public int brotherId; public string name; public List brothers;
Issue is arising because of Circular Reference.
Since Jackson 1.6 you can use two annotations to solve the infinite recursion problem without ignoring the getters/setters during serialization: @JsonManagedReference and @JsonBackReference.
Jackson 1.6
refer here for more