我只是在 PostgreSQL 上尝试使用 Dropwizard 和 Hibernate 的 Liquibase,所有最新版本,但我遇到了障碍。我打算为我的类 ID 使用 Hibernate 的 UUID 生成器,它会生成一个字符串 PK。我指定我想要在我的表varchar(32)
中调用一个字段id
,但 Liquidbase 生成了bigint
字段。然而有趣的是,这两个表有不同的列:portfolio.id
有序列portfolio_id_seq
,而 Stock 没有序列。
我做错了什么,或者这只是 Liquibase 的 ID 列的一些奇怪属性?我应该使用bigint
s 吗?下面的代码:
迁移.xml:
<changeSet id="1" author="orlade">
<createTable tableName="stock">
<column name="id" type="varchar(255)">
<constraints primaryKey="true" nullable="false" />
</column>
<column name="name" type="varchar(255)">
<constraints nullable="false" />
</column>
<column name="symbol" type="varchar(255)">
<constraints nullable="false" />
</column>
<column name="description" type="varchar(255)" />
</createTable>
<createTable tableName="portfolio">
<column name="id" type="varchar(255)">
<constraints primaryKey="true" nullable="false" />
</column>
<column name="name" type="varchar(255)">
<constraints nullable="false" />
</column>
<column name="description" type="varchar(255)" />
</createTable>
</changeSet>
投资组合.java:
@Entity
@Table(name = "portfolio")
public class Portfolio {
@Id
@GeneratedValue(generator = "system-uuid")
@GenericGenerator(name = "system-uuid", strategy = "uuid")
private String id;
}
股票.java:
@Entity
@Table(name = "stock")
public class Stock {
@Id
@GeneratedValue(generator = "system-uuid")
@GenericGenerator(name = "system-uuid", strategy = "uuid")
private String id;
}