我有一个使用liquibase生成的表,如下所示
<createTable tableName="MyTable">
<column name="id" type="BIGINT" autoIncrement="true">
<constraints primaryKey="true" nullable="false"/>
</column>
<column name="a" type="VARCHAR(255)"/>
<column name="b" type="VARCHAR(255)"/>
<column name="c" type="BIGINT"/>
<column name="fk_id" type="BIGINT"/>
</createTable>
然后我有一个用于保留该对象的本地查询
EntityManager em = session.getEntityManagerFactory().createEntityManager();
em.getTransaction().begin();
em.createNativeQuery(
"INSERT INTO MyTable (a, b, c, fk_id)"
+ " VALUES ( :a, :b, :c, :fk_id)")
.setParameter("a", myObj.geta().toString())
.setParameter("b", myObj.getb().toString())
.setParameter("c", myObj.getc()))
.setParameter("fk_id",
myObj.getOtherObj().getId)
.executeUpdate();
em.getTransaction().commit();
em.close();
我已将JPA注释设置为按如下所示自动递增此ID
@Id
@JsonProperty
@GeneratedValue(strategy = GenerationType.IDENTITY)
Long id;
但是ID在数据库中为空,我错过了什么?我还尝试过插入一个空值来代替主键,但是它仍然不能自动将其递增为一个值?
还尝试将其更改为
@Id
@GeneratedValue(strategy = GenerationType.AUTO, generator = "native")
@GenericGenerator(name = "native", strategy = "native")
@Column(name = "id", updatable = false, nullable = false)
private Long id;
那似乎没有用
还尝试使用GenerationType.Table和GenerationType.SEQUENCE
这是我看到的SQl
Hibernate:
/* dynamic native SQL query */ INSERT
INTO
MyTable
(a, b, c, d, fk_id)
VALUES
(?, ?, ?, ?, ?)
然后我记录持久性实体,以查看其是否获得自动递增的ID
INFO [2019-02-25 16:24:11,611] Successfully persisted myObj: 'null:FK_table{its values} other stuff gets saved'
请注意,ID列为空。
在执行查询之前,我也将ID显式设置为null,但还是没有运气 我尝试使用其他mysql客户端执行相同的查询,但这似乎可行