hibernate
tianhaimo
菜鸟级程序员
展开
-
用spring控制hibernate的session何时关闭
在用spring管理hierbernate的事务我们一般都用TransactionProxyFactoryBean去配置我们的Service方法. 如. PROPAGATION_REQUIRED PROPAGATION_REQUIRED,readOnly PROPAGATION_转载 2012-04-23 18:25:07 · 434 阅读 · 0 评论 -
单向关联(Unidirectional association)
1.many-to-one:最常见的单向关联关系 <many-to-one name="Address" column="addressId" not-null="true"/> 2.one-to-one:有两种 (1)基于外键关联的一对一关联 <many-to-one name="address" colu转载 2013-03-01 15:26:34 · 1515 阅读 · 0 评论 -
使用连接表的单向关联(Unidirectional associations with join tables)
1.one-to-many:基于连接表的单向一对多关联,应该优先被采用。请注意,通过制定unique=“true”,我们可以把多样性从多对多改变为一对多。 <many-to-many column="addressId" unique="true" class="Address"/> 2.many-to-one:基于连接表的单转载 2013-03-01 16:34:32 · 515 阅读 · 0 评论