欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

hibernate ont-to-many 的问题 get不到值 HibernateSpringSSHXML框架

程序员文章站 2024-02-05 16:37:58
...
在one-to-many中,数据库里面有对应数据,为什么parent.getChilds() get不到值

Parent.hbm.xml
<set name="chhilds" inverse="true" lazy="true" cascade="all">
	<key column="chi_id"/>
	<one-to-many class="Child"/>
</set>

Childs.hbm.xml
<many-to-one name="parent" column="par_id"
	class="Parent" not-null="false" cascade="all">
</many-to-one>


是以前的一个SSH框架,采用openSessionInViewFillter,用的是hibernate2,spring的版本也相对较老.

请问为什么parent.getChilds() get不到值,是不是hibernate 和 spring 的版本原因,还是新的版本也会有这样的问题?
测试many-to-many没有问题