我有一个具有以下休眠映射的用户对象,它是多对多自联接:
<hibernate-mapping>
<class name="User" table="User">
<id name="id" type="int">
<column name="userId" />
<generator class="native" />
</id>
<set name="friends" table="User_Friend"
inverse="false" lazy="true" cascade="all">
<key column="userId"/>
<many-to-many column="friendId" class="User" />
</set>
<set name="cars" table="Car" inverse="true" fetch="select" lazy="true">
<key>
<column name="userId" not-null="true" />
</key>
<one-to-many class="Car" />
</set>
</class>
</hibernate-mapping>
汽车映射如下所示:
<hibernate-mapping>
<class name="Car" table="Car">
<id name="id" type="int">
<column name="carId" />
<generator class="native" />
</id>
<set name="carStatuses" table="Car_Status"
inverse="true" lazy="true" fetch="select">
<key>
<column name="carId" not-null="true" />
</key>
<one-to-many class="CarStatus" />
</set>
<many-to-one name="user"
column="userId"
not-null="true"/>
</class>
</hibernate-mapping>
我检索用户对象,然后尝试使用此方法将其作为 Restlet JSON 表示返回:
public Representation getJSONRepresentationFromObject(User object) {
JSONArray ja = new JSONArray();
JSONObject jo = new JSONObject(object);
ja.put(jo);
JsonRepresentation jr = new JsonRepresentation(ja);
jr.setCharacterSet(CharacterSet.UTF_8);
return jr;
}
问题是我得到一个StackOverflowError
:
警告:在 java.lang.reflect.Method.invoke 的 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) 的 sun.reflect.GeneratedMethodAccessor74.invoke(Unknown Source) 的资源 java.lang.StackOverflowError 中捕获到异常或错误(Method.java:597) 在 org.json.JSONObject.populateMap(JSONObject.java:988) 在 org.json.JSONObject.(JSONObject.java:272) 在 org.json.JSONObject.wrap(JSONObject.java:1587 ) 在 org.json.JSONArray.(JSONArray.java:158) 在 org.json.JSONObject.wrap(JSONObject.java:1569) 在 org.json.JSONObject.populateMap(JSONObject.java:990) 在 org.json。 JSONObject.(JSONObject.java:272) 在 org.json.JSONObject.wrap(JSONObject.java:1587) 在 org.json.JSONArray.(JSONArray.java:158) 在 org.json.JSONObject.wrap(JSONObject.java :1569) 在 org.json.JSONObject。populateMap(JSONObject.java:990) 在 org.json.JSONObject.(JSONObject.java:272)
如果我删除用户映射中设置的汽车,错误就会消失,我可以将用户转换为 json。汽车映射是否有问题使其陷入无限循环?