JdbcTemplate 如何自动生成主键
Posted
技术标签:
【中文标题】JdbcTemplate 如何自动生成主键【英文标题】:JdbcTemplate how to auto generate primary key 【发布时间】:2014-05-22 11:01:20 【问题描述】:我正在使用 spring,它是用于数据库连接的 JdbcTemplate,我正在尝试为我的主键列自动生成一个键。我也在使用HSQLDB
。表格是这样的:
CREATE TABLE IF NOT EXISTS Customers (
cid BIGINT GENERATED BY DEFAULT AS PRIMARY KEY,
name VARCHAR(255) NOT NULL,
...
);
我的 Dao 对象中的代码如下所示:
Map<String, Object> values = new HashMap<String, Object>();
values.put("name", customer.getName());
// NOT putting the cid
...
SimpleJdbcInsert insert = new SimpleJdbcInsert(jdbc).withTableName(
"CUSTOMERS").usingGeneratedKeyColumns("CID");
Long key = (Long) insert.executeAndReturnKey(values);
如您所见,我没有手动输入密钥,我希望usingGeneratedKeyColumns
方法会自动为我生成它。无论如何我在执行executeAndReturnKey
后得到这个错误:
org.springframework.dao.DataIntegrityViolationException: PreparedStatementCallback; SQL []; integrity constraint violation: NOT NULL check constraint; SYS_PK_10094 table: CUSTOMERS column: CID; nested exception is java.sql.SQLIntegrityConstraintViolationException: integrity constraint violation: NOT NULL check constraint; SYS_PK_10094 table: CUSTOMERS column: CID
【问题讨论】:
你为什么要这样做?只需让您的数据库使用自动增量生成密钥。 【参考方案1】:问题在于从HSQLDB
自动生成密钥的语法略有不同。您需要将其定义为IDENTITY
,然后定义为PRIMARY KEY
:
CREATE TABLE IF NOT EXISTS Customers (
cid BIGINT GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
name VARCHAR(255) NOT NULL,
...
);
【讨论】:
以上是关于JdbcTemplate 如何自动生成主键的主要内容,如果未能解决你的问题,请参考以下文章
如何从 SQL 脚本、JDBC 或 Spring JdbcTemplate 在 MySQL 中创建函数?
如何配置 Spring 使 JPA(Hibernate)和 JDBC(JdbcTemplate 或 MyBatis)共享同一个事务