我有这个实体:
@Entity
@Table( name = "Group" )
public class Group implements Serializable {
@Id
private Long id;
@ElementCollection
@CollectionTable( name = "Group" )//this sends an exception
@Column( name = "places_availables" )
private List<Integer> places = new ArrayList<Integer>();
}
我想知道是否有办法阻止Hibernate生成新表并只在Group
表中添加新列。
非常感谢