我正在使用h2为使用Eclipselink,Arquillian和Weblogic 12.1.1的应用程序设置集成测试
这是我的实体:
@Entity
@Table(name = "AFIS_REQUEST")
public class Request implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "requestSEQ")
@SequenceGenerator(name = "requestSEQ", sequenceName = "REQUEST_ID_SEQ", allocationSize = 1)
@Column(name = "ID")
private Long id;
...
}
这是我的persistence.xml
<persistence-unit name="myPU" transaction-type="JTA">
<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
<jta-data-source>jdbc/arquillian</jta-data-source>
<class>com.my.Request</class>
<exclude-unlisted-classes>true</exclude-unlisted-classes>
<validation-mode>NONE</validation-mode>
<properties>
<property name="eclipselink.ddl-generation" value="drop-and-create-tables"/>
<property name="eclipselink.logging.level.sql" value="FINEST"/>
<property name="eclipselink.logging.parameters" value="true"/>
<property name="eclipselink.target-database" value="org.eclipse.persistence.platform.database.H2Platform"/>
</properties>
</persistence-unit>
这是我在Weblogic数据源中指定的JDBC URL和Driver类:
但是当我开始测试时,我得到以下异常:
<Dec 3, 2012 3:58:23 PM IRST> <Warning> <EclipseLink> <BEA-2005000> <2012-12-03 15:58:23.217--ServerSession(16406343)--Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.3.2.v20111125-r10461): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: org.h2.jdbc.JdbcSQLException: Sequence "REQUEST_ID_SEQ" not found; SQL statement:
CALL NEXT VALUE FOR REQUEST_ID_SEQ [90036-166]
Error Code: 90036
Call: CALL NEXT VALUE FOR REQUEST_ID_SEQ
Query: ValueReadQuery(sql="CALL NEXT VALUE FOR REQUEST_ID_SEQ")>
因为我希望在开始测试时创建表,并在完成测试时将其删除,所以我已将drop-and-create-tables
分配给eclipselink.ddl-generation
属性。但似乎生成了Table,但它的序列不是由Eclipselink创建的。
h2是否支持生成序列?或者我错过了任何配置?
修改 我检查了生成的DDL,它显示生成了创建序列语句。
CREATE TABLE REQUEST (ID BIGINT NOT NULL, ... , PRIMARY KEY (ID))
CREATE SEQUENCE REQUEST_ID_SEQ START WITH 1
然后我使用H2网络控制台连接到生成的数据库,看到生成了序列,我可以在那里成功执行CALL NEXT VALUE FOR REQUEST_ID_SEQ
!
为什么Eclipselink会抱怨它呢? Sequence "REQUEST_ID_SEQ" not found;
答案 0 :(得分:3)
我有同样的问题,我设法让这个工作,只需将此行添加到您的持久性文件:
<property name="eclipselink.target-database" value="org.eclipse.persistence.platform.database.H2Platform"/>
它必须是<properties>
的第一个属性。
请注意,您仍会收到警告。
我找到了解决方案here
答案 1 :(得分:0)