SimpleJdbcInsert 插入失败,因为自动生成的 id 为空 (HSQLDB)
Posted
技术标签:
【中文标题】SimpleJdbcInsert 插入失败,因为自动生成的 id 为空 (HSQLDB)【英文标题】:SimpleJdbcInsert fail to insert because of null autogenerated id (HSQLDB) 【发布时间】:2020-05-27 01:05:15 【问题描述】:大家早上好
我正在使用 HSQLDB 使用 JUnit 对项目的持久层进行单元测试。该项目使用 Spring 和 Hibernate + JPA。我正在使用 Spring 的 SimpleJdbcInsert 在数据库中插入一些数据进行测试。但是,每当我尝试插入我得到的东西时:
org.hsqldb.HsqlException: violación del restricción de integridad: restricción ('check') NOT NULL; SYS_CT_10137 table: PICTURE column: PICTURE_ID
如下图:
org.springframework.dao.DataIntegrityViolationException: PreparedStatementCallback; SQL [INSERT INTO picture (DATA, MIME_TYPE, NAME, SIZE) VALUES(?, ?, ?, ?)]; violación del restricción de integridad: restricción ('check') NOT NULL; SYS_CT_10137 table: PICTURE column: PICTURE_ID; nested exception is java.sql.SQLIntegrityConstraintViolationException: violación del restricción de integridad: restricción ('check') NOT NULL; SYS_CT_10137 table: PICTURE column: PICTURE_ID
at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:85)
at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:81)
at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:645)
at org.springframework.jdbc.core.JdbcTemplate.update(JdbcTemplate.java:866)
at org.springframework.jdbc.core.JdbcTemplate.update(JdbcTemplate.java:927)
at org.springframework.jdbc.core.JdbcTemplate.update(JdbcTemplate.java:932)
at org.springframework.jdbc.core.simple.AbstractJdbcInsert.executeInsertInternal(AbstractJdbcInsert.java:362)
at org.springframework.jdbc.core.simple.AbstractJdbcInsert.doExecute(AbstractJdbcInsert.java:341)
at org.springframework.jdbc.core.simple.SimpleJdbcInsert.execute(SimpleJdbcInsert.java:122)
at ar.edu.itba.paw.tests.AppointmentDaoImplTest.insertPicture(AppointmentDaoImplTest.java:330)
at ar.edu.itba.paw.tests.AppointmentDaoImplTest.insertUser(AppointmentDaoImplTest.java:345)
at ar.edu.itba.paw.tests.AppointmentDaoImplTest.insertPatient(AppointmentDaoImplTest.java:449)
at ar.edu.itba.paw.tests.AppointmentDaoImplTest.testCreateAppointmentSuccessfully(AppointmentDaoImplTest.java:557)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:75)
at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86)
at org.junit.rules.ExpectedException$ExpectedExceptionStatement.evaluate(ExpectedException.java:168)
at org.junit.rules.RunRules.evaluate(RunRules.java:20)
at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:254)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:89)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70)
at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:193)
at org.junit.runner.JUnitCore.run(JUnitCore.java:160)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
at com.intellij.rt.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:33)
at com.intellij.rt.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:230)
at com.intellij.rt.junit.JUnitStarter.main(JUnitStarter.java:58)
Caused by: java.sql.SQLIntegrityConstraintViolationException: violación del restricción de integridad: restricción ('check') NOT NULL; SYS_CT_10137 table: PICTURE column: PICTURE_ID
at org.hsqldb.jdbc.JDBCUtil.sqlException(Unknown Source)
at org.hsqldb.jdbc.JDBCUtil.sqlException(Unknown Source)
at org.hsqldb.jdbc.JDBCPreparedStatement.fetchResult(Unknown Source)
at org.hsqldb.jdbc.JDBCPreparedStatement.executeUpdate(Unknown Source)
at org.springframework.jdbc.core.JdbcTemplate$2.doInPreparedStatement(JdbcTemplate.java:873)
at org.springframework.jdbc.core.JdbcTemplate$2.doInPreparedStatement(JdbcTemplate.java:866)
at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:629)
... 41 more
Caused by: org.hsqldb.HsqlException: violación del restricción de integridad: restricción ('check') NOT NULL; SYS_CT_10137 table: PICTURE column: PICTURE_ID
at org.hsqldb.error.Error.error(Unknown Source)
at org.hsqldb.Table.enforceRowConstraints(Unknown Source)
at org.hsqldb.Table.insertSingleRow(Unknown Source)
at org.hsqldb.StatementDML.insertSingleRow(Unknown Source)
at org.hsqldb.StatementInsert.getResult(Unknown Source)
at org.hsqldb.StatementDMQL.execute(Unknown Source)
at org.hsqldb.Session.executeCompiledStatement(Unknown Source)
at org.hsqldb.Session.execute(Unknown Source)
... 46 more
这是我的测试(insertPatient()
失败):
@Test
public void testCreateAppointmentSuccessfully()
cleanAllTables();
insertPatient();
... some code ...
insertPatient
函数(insertPicture()
失败):
private void insertPatient()
insertUser();
... some code ...
private void insertUser()
insertPicture();
... some code ...
private void insertPicture()
Map<String, Object> map = new HashMap<>();
map.put("data", IMG_DATA);
map.put("mime_type", MIME_TYPE);
map.put("size", IMG_SIZE);
map.put("name", PICTURE);
pictureJdbcInsert.execute(map);
SimpleJdbcInsert pictureJdbcInsert
实例在以下方法中设置:
@Before
public void setUp()
this.pictureJdbcInsert = new SimpleJdbcInsert(this.ds)
.withTableName(PICTURES_TABLE) // private static final String PICTURES_TABLE = "picture";
.usingGeneratedKeyColumns("picture_id");
... some code ...
测试类用@Sql(scripts = "classpath:sql/schema.sql")
注释为schema.sql
:
create table if not exists picture
(
picture_id identity not null constraint picture_pk primary key,
name varchar(1023),
mime_type varchar(255) not null,
size bigint not null default 0,
data varbinary(65535) not null
);
... some more tables ...
如您所见,我没有手动输入密钥。我期待usingGeneratedKeyColumns
方法会自动为我生成它。从堆栈跟踪中,我了解到正在尝试执行以下查询:
INSERT INTO picture (DATA, MIME_TYPE, NAME, SIZE) VALUES(?, ?, ?, ?)
其中?
被映射中的相应值替换,但由于没有指定picture_id
的值而失败。我不明白这是因为schema.sql
文件指定picture_id
是identity
类型,这意味着它是自动生成的,默认情况下从0 开始,增量为1。
我一直在尝试寻找解决方案,但一切都表明这应该可行。
【问题讨论】:
【参考方案1】:当使用usingGeneratedKeyColumns()
方法时,您似乎必须使用相应的方法executeAndReturnKey()
而不是execute()
在插入时自动生成密钥。使用execute
方法,您需要在参数映射中提供picture_id
列和值。
请查看本指南的第 5.1 节以了解这种差异的示例:https://www.baeldung.com/spring-jdbc-jdbctemplate
因此,在您的代码中,您可以这样做:
private void insertPicture()
Map<String, Object> map = new HashMap<>();
map.put("data", IMG_DATA);
map.put("mime_type", MIME_TYPE);
map.put("size", IMG_SIZE);
map.put("name", PICTURE);
Number id = pictureJdbcInsert.executeAndReturnKey(map);
如果您愿意,您可以捕获或丢弃返回的 id
值。
【讨论】:
试过这个但没有解决问题。抛出相同的异常。 我注意到在您的架构中,您的picture_id
列的数据类型根本没有设置。您可以尝试将其设置为整数,然后是其余的元数据(身份不为空...等),然后再试一次? HSQL 文档要求在列名之后在任何其他元数据之前声明列数据类型:hsqldb.org/doc/guide/…
我将province_id
列更改为province_id INTEGER GENERATED BY DEFAULT AS IDENTITY(START WITH 1) PRIMARY KEY
,与您发送的文档示例完全匹配。然而,同样的异常被抛出。
你提到了province_id
,但我们一直在讨论picture_id
。这是输入错误还是您不小心更改了另一个名为 province_id
的列?
是的对不起,我的意思是picture_id
。【参考方案2】:
实际问题出在配置类中。我在EntityManagerFactory
bean 中有这个properties.setProperty("hibernate.hbm2ddl.auto", "update");
。因此,JPA 在运行schema.sql
文件之前创建了表。这导致picture_id
列不是identity
类型。从 bean 中删除该行解决了这个问题。
【讨论】:
以上是关于SimpleJdbcInsert 插入失败,因为自动生成的 id 为空 (HSQLDB)的主要内容,如果未能解决你的问题,请参考以下文章
SimpleJdbcInsert由于自动生成的ID(HSQLDB)为空而无法插入
如何使用 SimpleJdbcInsert 和 executeBatch 和 MYSQL JDBC 驱动程序获取生成的密钥?
spring3: 对JDBC的支持 之 Spring提供的其它帮助 SimpleJdbcInsert/SimpleJdbcCall/SqlUpdate/JdbcTemplate 生成主键/批量处理(