我有两个表Parent和Child。 子表引用父表。
在spring dao的应用程序配置中。我不能只给孩子配置吗? 如下。
<bean id="ChildDAOSpringTarget" class="project.dao.spring.ChildDAOSpring">
<property name="sessionFactory">
<ref local="sessionFactory" />
</property>
</bean>
<bean id="ChildDAO"
class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
<property name="transactionManager">
<ref local="transactionManager" />
</property>
<property name="target">
<ref local="ChildDAOSpringTarget" />
</property>
<property name="transactionAttributes">
<props>
<prop key="get*">PROPAGATION_REQUIRED,readOnly
</prop>
<prop key="find*">PROPAGATION_REQUIRED,readOnly
</prop>
<prop key="load*">PROPAGATION_REQUIRED,readOnly
</prop>
<prop key="store*">PROPAGATION_REQUIRED</prop>
<prop key="add*">PROPAGATION_REQUIRED</prop>
</props>
</property>
</bean>
我是否必须为Parent添加此类配置和类?
答案 0 :(得分:0)
我没有在applicationContext.xml中配置父表和子表之间的关系,但我在modelXXX.hbm.xml文件中设置了关系,或者你可以使用hibernate工具生成模型link
答案 1 :(得分:0)
在hibernate中,父子关系已在hbm文件中定义,或者它将基于注释。在应用程序配置文件中,您必须定义数据库连接的属性,会话工厂,bean映射等。
答案 2 :(得分:0)
是的,如上所述...在这里查看一对多的教程,这可能是你想要做的。 http://www.mkyong.com/hibernate/hibernate-one-to-many-relationship-example/ 孩子成为父母的集合,并被访问。 Spring不需要引用子代 - 而是通过父代引用子代,如下所示: parent.getChildren()。[...]