Envers + Spring JPA:revinfo 不允许 'user' 列
Envers + Spring JPA: revinfo does not allow 'user' column
我设置了 Spring JPA + Envers (PostgreSQL) 并用 @Audited 注释了一些实体 类。我添加了我的 revinfo table 因为我想记录一个更改来自的帐户:
@Entity(name = "Audit")
@Table(name = "revinfo")
@RevisionEntity(AuditRevisionListener::class)
class AuditRevisionEntity(
@Id
@GeneratedValue
@RevisionNumber
var rev : Int = 0,
@RevisionTimestamp
var timestamp: Long = 0,
var username: String <<< CULPRIT
)
上面截取的代码有效!但是 - 在我将 username
重命名为 user
的那一刻,一切都崩溃了。我收到一条神秘消息
ERROR: syntax error at or near "user" at character 33
STATEMENT: insert into revinfo (timestamp, user, rev) values (, , )
我的第一个假设是我的类型不匹配,所以我根据我的 liquibase 设置进行了验证
<changeSet id="create-revinfo-table" author="me">
<createTable tableName="revinfo">
<column name="rev" type="SERIAL" autoIncrement="true">
<constraints primaryKey="true" primaryKeyName="revinfo_pkey"/>
</column>
<column name="timestamp" type="bigint"/>
<column name="username" type="VARCHAR(255)"/>
</createTable>
</changeSet>
当我将 username
重命名为 user
时,它再次崩溃并显示上述错误消息。
为什么我不能在 revinfo
中使用名为 user
的列?
还有更多这些神奇的列名吗?
我在哪里可以找到有关此行为的信息?
user
是 special keyword in PostgreSQL.
我会选择一个不同的名字,但如果你觉得它很重要 you can quote the name 和 @Column
:
@Column(name = "`user`")
var username: String
我设置了 Spring JPA + Envers (PostgreSQL) 并用 @Audited 注释了一些实体 类。我添加了我的 revinfo table 因为我想记录一个更改来自的帐户:
@Entity(name = "Audit")
@Table(name = "revinfo")
@RevisionEntity(AuditRevisionListener::class)
class AuditRevisionEntity(
@Id
@GeneratedValue
@RevisionNumber
var rev : Int = 0,
@RevisionTimestamp
var timestamp: Long = 0,
var username: String <<< CULPRIT
)
上面截取的代码有效!但是 - 在我将 username
重命名为 user
的那一刻,一切都崩溃了。我收到一条神秘消息
ERROR: syntax error at or near "user" at character 33
STATEMENT: insert into revinfo (timestamp, user, rev) values (, , )
我的第一个假设是我的类型不匹配,所以我根据我的 liquibase 设置进行了验证
<changeSet id="create-revinfo-table" author="me">
<createTable tableName="revinfo">
<column name="rev" type="SERIAL" autoIncrement="true">
<constraints primaryKey="true" primaryKeyName="revinfo_pkey"/>
</column>
<column name="timestamp" type="bigint"/>
<column name="username" type="VARCHAR(255)"/>
</createTable>
</changeSet>
当我将 username
重命名为 user
时,它再次崩溃并显示上述错误消息。
为什么我不能在 revinfo
中使用名为 user
的列?
还有更多这些神奇的列名吗?
我在哪里可以找到有关此行为的信息?
user
是 special keyword in PostgreSQL.
我会选择一个不同的名字,但如果你觉得它很重要 you can quote the name 和 @Column
:
@Column(name = "`user`")
var username: String