代码表和Hibernate JPA映射

时间:2014-12-14 09:38:19

标签: hibernate

假设我在DB中有代码表 - Product_Type有N个可能的值,Product表有一个属性为Product_Type(FK)。

使用JPA将Product表中的Product_Type映射到代码表的推荐方法是什么?

1 个答案:

答案 0 :(得分:1)

@Entity
@Table(name = "PRODUCT")
public class Product {

    @Id
    private long productId;

    @ManyToOne()
    private ProductType productType;
}

@Entity
@Table(name = "PRODUCT_TYPE") 
public class Product_Type {

   @Id
   private long product_type_id;

}