JPA entity giving error on implementing Bill of material concept
问题 Trying to implement the Bill of Material concept using JPA entity:- IDE: Eclipse Helios; Jars: eclipselink2.4.0 , javax.persistence Entity is as follows: @Id @TableGenerator(name = "Config_Key_Incrementor", table = "id_generator", pkColumnName = "gen_name", valueColumnName = "gen_value", pkColumnValue = "conifg_id_gen", allocationSize = 1, initialValue = 1) @GeneratedValue(strategy = TABLE, generator = "Config_Key_Incrementor") @Column(name = "config_id") private int configId; @Column(name =