o.h.tool.hbm2ddl.SchemaExport - ORA-02261

Hibernate自动建表错误信息如下:
.
.
.
2013-02-01_14:37:17.031 ERROR o.h.tool.hbm2ddl.SchemaExport - Unsuccessful: create table scott.songjy_stock_detail (STOCK_ID number(10,0) not null unique, COMP_DESC varchar2(255 char) not null, COMP_NAME varchar2(100 char) not null, LISTED_DATE date not null, REMARK varchar2(255 char) not null, primary key (STOCK_ID))
2013-02-01_14:37:17.031 ERROR o.h.tool.hbm2ddl.SchemaExport - ORA-02261: such unique or primary key already exists in the table


alter table scott.songjy_stock_detail
add constraint FK6E7B6CD5953C343B
foreign key (STOCK_ID)
references scott.songjy_stock
.
.
.

解决方案是将以下代码中主键的修饰代码“unique = true”去掉
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator="STOCK_SEQUENCE")
@SequenceGenerator(name="STOCK_SEQUENCE", sequenceName="SEQUENCE_STOCK",allocationSize=1)
@Column(name = "STOCK_ID", unique = true, nullable = false)
private Integer stockId;

修改后代码如下:
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator="STOCK_SEQUENCE")
@SequenceGenerator(name="STOCK_SEQUENCE", sequenceName="SEQUENCE_STOCK",allocationSize=1)
@Column(name = "STOCK_ID", nullable = false)
private Integer stockId;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值