当前位置: 代码迷 >> J2EE >> hibernate+oracle报错(could not get next sequence value)解决思路
  详细解决方案

hibernate+oracle报错(could not get next sequence value)解决思路

热度:659   发布时间:2016-04-22 01:27:26.0
hibernate+oracle报错(could not get next sequence value)
select reportbill.nextval from dual
......................

org.hibernate.exception.GenericJDBCException: could not get next sequence value;
。。。。。。。。。。
Caused by: java.sql.SQLException: ORA-02289: 序列不存在



session.save(report);
commit();


报上述错误,

hibernate映射配置如下:


<class name="com.test.model.reportbill.ReportBill" table="REPORT_BILL" schema="test" lazy="false">
  <id name="rid" type="java.lang.Long">
  <column name="RID" precision="22" scale="0" />
  <generator class="sequence"><param name="sequence">reportbill</param></generator> 
  </id>
  <many-to-one name="user" class="com.sundan.model.ura.SysUser" fetch="select">
  <column name="USERID" length="36" />
  </many-to-one>
  <many-to-one name="sla" class="com.sundan.model.reportbill.Sla" fetch="select" lazy="false">
  <column name="SID" length="10" />  
  </many-to-one>


。。。。。。。。。。。。。。。。

</class>

将配置文件RID的generator属性删掉,通过setXXX()赋值,运行正常!!



请高手指教!!


 

------解决方案--------------------
会不会是你的reportbill这个sequence在数据库没有创建啊???
  相关解决方案