hibernate的一对多的关系

在一的实体类中配置多的实体类的set集合,多的一方配置多的实体类型的主键,在一的映射文件中配置
<set name="image"  cascade="all">
  <key column="id"></key>
  <one-to-many class="org.model.Image"/>
  </set>
在多的配置文件中配置
<many-to-one name="products" column="pid"></many-to-one>
    即可完成。

你可能感兴趣的:(Hibernate)