我正在运行带有Oracle 11g DB的JBoss EAP 7服务器和用于JPA的Hibernate。我注意到一些奇怪的事情。当我第一次创建数据库并启动服务器时,一切正常。我从客户端发送请求,服务器将数据保存在数据库中。
如果我重新启动服务器并尝试执行相同的操作,我会为每个请求获得一个唯一的约束违例例外:
java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (SCHEMA.SYS_C0010299) violated
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:447)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:396)
at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:951)
at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:513)
at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:227)
at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:531)
at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:208)
at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1046)
at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1336)
at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3613)
at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3694)
at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1354)
at org.jboss.jca.adapters.jdbc.WrappedPreparedStatement.executeUpdate(WrappedPreparedStatement.java:537)
at org.hibernate.engine.jdbc.internal.ResultSetReturnImpl.executeUpdate(ResultSetReturnImpl.java:204)
我使用下面的查询检查了sqlplus中的约束。 (我将查询作为系统用户运行,而不是与服务器相同的用户,如果这很重要的话。)
SELECT A.TABLE_NAME,C.TABLE_NAME,COLUMN_NAME FROM ALL_CONS_COLUMNS A
JOIN ALL_CONSTRAINTS C ON A.CONSTRAINT_NAME = C.CONSTRAINT_NAME
WHERE C.CONSTRAINT_NAME = 'SYS_C0010299';
似乎发生在我的一个表的主键上。该主键是使用序列生成的。
@Id
@Column(name="ID_COL")
@GeneratedValue(strategy=GenerationType.SEQUENCE, generator = "SEQ_NAME_GEN")
@SequenceGenerator(name = "SEQ_NAME_GEN", sequenceName = "SEQ_NAME")
private Long id;
如果我创建一个全新的数据库,应用程序首先会再次运行正常,直到我重新启动服务器。为什么会这样?
这是实体类与另一个实体类的关系:
// other class
@OneToMany(cascade=CascadeType.ALL, mappedBy="otherClass")
@MapKey(name = "mapKey")
private Map<MapKey, ConstraintViolationEntityClass>
map;
// problematic class (ConstraintViolationEntityClass)
@Column(name = "MAP_KEY")
@Enumerated(EnumType.ORDINAL)
private EnumType enumType;
@ManyToOne
@JoinColumn(name = "OTHER_CLASS_ID", nullable = false)
private OtherClass otherClass;
这是我用来为ConstraintViolationEntityClass创建表的SQL代码:
create table schema.ConstraintViolationEntityTable (
id_col number(10) not null primary key,
map_key number(2) not null,
other_class_id number(10) not null,
constraint other_class_fk foreign key (other_class_id) references schema.other_class(id)
);
这是我的persistence.xml:
<persistence-unit name="unit1" transaction-type="JTA">
<jta-data-source>java:jboss/OracleDS</jta-data-source>
<exclude-unlisted-classes>false</exclude-unlisted-classes>
<properties>
<property name="hibernate.transaction.jta.platform" value="org.hibernate.service.jta.platform.internal.JBossStandAloneJtaPlatform"/>
<property name="hibernate.show_sql" value="true" />
<property name="hibernate.format_sql" value="true" />
<property name="hibernate.hbm2ddl.auto" value="validate" />
</properties>
</persistence-unit>
由于某些原因,成功请求插入的行的某些主键是否定的。并检查dba_sequences
,序列的last_number
为43,即使表中只有24行(每个客户端请求添加12行)
答案 0 :(得分:0)
如PeterM所链接的答案中所述,序列生成器的默认分配大小为50,这是问题的根本原因,因为您使用增量1定义序列。我只是评论负值问题。
分配大小为50(在SequenceGenerator.allocationSize
中设置)意味着Hibernate将:
INCREMENT BY 50
创建序列(如果您允许的话)n
n-50
分配ID到n
由于您已将序列增量设为1,因此很容易看出负值的来源(以及为什么会出现约束违规)。如果您尝试插入超过50行,则无需重新启动服务器就会遇到约束违规。