I have 2 bi-directional models and I use JsonIdentityInfo to prevention from infinite Recursion in json result. Here is my viewmodels:
@JsonIdentityInfo(generator = ObjectIdGenerators.PropertyGenerator.class, property = "id")
public class GroupsViewModel extends BaseEntityViewModel<Long> {
     private String               title;
     private Set<UserViewModel>   users;
}
@JsonIdentityInfo(generator = ObjectIdGenerators.PropertyGenerator.class, property = "id")
public class UserViewModel extends BaseEntityViewModel<Long> {
     private String                 username;
     private String                 password;
     private Set<GroupsViewModel>   groups;
}
and a part of my json result is like below:
[{
      "id" : 1,
      "title" : "adminGroup",
      "users" : [{
            "id" : 1,
            "username" : "admin",
            "password" : "...",
            "groups" : [1]
         }, {
            "id" : 31,
            "username" : "user78",
            "password" : "...",
            "groups" : [1]
         }, {
            "id" : 3,
            "username" : "ali",
            "password" : "...",
            "groups" : [{
                  "id" : 2,
                  "title" : "newsWriterGroup",
                  "users" : [{
                        "id" : 14,
                        "username" : "staff1",
                        "password" : "...",
                        "groups" : [{
                              "id" : 1005,
                              "title" : "FileManagerAccessGroup",
                              "users" : [{
                                    "id" : 25,
                                    "username" : "test1",
                                    "password" : "...",
                                    "groups" : [1005, {
                                          "id" : 1006,
                                          "title" : "noAccessGroup",
                                          "users" : [25, {
                                                "id" : 26,
                                                "username" : "test5",
                                                "password" : "...",
                                                "groups" : [1006]
                                             }
                                          ]
                                       }
                                    ]
                                 }, 14]
                           }, 2]
                     }, ...
As shown in above, if object is repetitive in json result, Jackson put only it's identifier of it. Now I want to know Is there any javascript/jquery library to represent json-result of @JsonIdentityInfo? for example, when javascript/jquery library arrive at 1005 identifier , it automaticaly load group object with id = 1005.
 
     
    