JPA Entity for Drop Down columns
问题 I am using JPA 2.0 with Hibernate 4.1.0, I have the following in my Entity class @Entity @Table(name = "PRODUCTS") public class Product { private String productNo; private String productDesc; private Date deliveryDate; private Date invoiceDate; private Integer productCurrencyId; private String productCurrency; The above will be used in application for displaying records as well as for CRUD operation. From the above productCurrencyId and productCurrency will be used in the application for drop