我有一个辅助的独立应用程序来从某些表中加载实体的值,并且它正在下降,因为 Hibernate 试图在没有指定键值的情况下创建记录(即使它被指定为@GeneratedValue(strategy=GenerationType.AUTO)
)。
豆是:
@Entity
public class Location implements Serializable {
private static final long serialVersionUID = 1L;
// startRegion attributes
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
private int id = 0;
@ManyToOne(fetch = FetchType.LAZY)
private Location parent = null;
@Column(nullable=false)
private boolean active = false;
@OneToMany(mappedBy="parent", cascade=CascadeType.ALL, fetch=FetchType.LAZY)
private Set<Location> divisions = null;
@OneToMany(mappedBy="location", fetch=FetchType.EAGER, cascade=CascadeType.ALL)
@MapKey(name="localeId")
private Map<String, Location_i18n> descriptions = new HashMap<String, Location_i18n>();
@Column(nullable=true, length=150)
private String path = null;
@Column(nullable=true, length=20)
private String prismaCode = null;
@Column(nullable=true, length=5)
private String shortCode = null;
}
Hibernate 日志中显示的 SQL 缺少该id
字段:
insert into Location (active, parent_id, path, prismaCode, shortCode) values (?, ?, ?, ?, ?)
这显然会导致约束违反异常。
相关属性来自persistence.xml
:
<property name="hibernate.dialect" value="org.hibernate.dialect.SQLServer2008Dialect"/>
<property name="hibernate.show_sql" value="true"/>
<property name="hibernate.hbm2ddl.auto" value="validate"/>
<property name="hibernate.connection.driver_class" value="com.microsoft.sqlserver.jdbc.SQLServerDriver"/>
为了增加我的挫败感,我在之前的过程中做了一个有点相似的过程,但我找不到导致问题的任何差异。
我已经尝试过针对 MS SQL 2008 Express 的 Hibernate 3.6.10 和 4.1.8。
有任何想法吗?预先感谢。