gpt4 book ai didi

java - hibernate 异常 : proxy handle is no longer valid after database violation error

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:34:23 27 4
gpt4 key购买 nike

我有循环来保存几个对象。在循环中调用服务方法并捕获异常。服务保存方法被注释为 @Transactional 并且在内部执行 hibernate saveOrUpdate 调用。服务由 ApplicationContext 对象的 getBean 方法提供。我只在循环之前调用它一次。

在循环中,在我捕获到违反 oracle 约束的异常之后:

org.hibernate.exception.constraintviolationexception: ora-00001: unique constraint (ccb.sys_c0017085) violated

我记录问题并尝试保存另一个对象。我得到的下一个异常(exception)是:

org.hibernate.HibernateException: proxy handle is no longer valid

有时它只在每次 ora 错误后出现一次,但有时它会重复出现更多对象(迭代)。

如何处理这个异常以及如何使保存操作成为可能?

我正在使用Spring 3.1.3 和 Hibernate 4.1.7。

[编辑]一些代码示例:

@Service
public class ServiceForRecord {
@Transactional
public Record saveRecord(Record record, String user) {
Record obj = record;
// some validation & seting internal values
getHibernateTemplate().saveOrUpdate(obj)
return obj;
}
...

在我的循环中我这样做:

//in params:
serviceClass = ServiceForRecord.class;
entityClass = Record.class;
saveMethod = "saveRecord";
//loop prepare
service = getApplicationContext().getBean(serviceClass);
serviceSave = serviceClass.getMethod("saveRecord", Record.class, String.class);
while (condition) {
entity = BeanUtils.instantiate(entityClass);
//setup entity
serviceSave.invoke(service, entity, "testUser");
//catch error
} //end while

[编辑]堆栈跟踪:

PreparedStatementProxyHandler(AbstractProxyHandler).errorIfInvalid() line: 63   
PreparedStatementProxyHandler(AbstractStatementProxyHandler).continueInvocation(Object, Method, Object[]) line: 100
PreparedStatementProxyHandler(AbstractProxyHandler).invoke(Object, Method, Object[]) line: 81
$Proxy100.clearBatch() line: not available
NonBatchingBatch(AbstractBatchImpl).releaseStatements() line: 163
NonBatchingBatch(AbstractBatchImpl).execute() line: 152
JdbcCoordinatorImpl.getBatch(BatchKey) line: 151
SingleTableEntityPersister(AbstractEntityPersister).insert(Serializable, Object[], boolean[], int, String, Object, SessionImplementor) line: 2940
SingleTableEntityPersister(AbstractEntityPersister).insert(Serializable, Object[], Object, SessionImplementor) line: 3403
EntityInsertAction.execute() line: 88
ActionQueue.execute(Executable) line: 362
ActionQueue.executeActions(List) line: 354
ActionQueue.executeActions() line: 275
DefaultFlushEventListener(AbstractFlushingEventListener).performExecutions(EventSource) line: 326
DefaultFlushEventListener.onFlush(FlushEvent) line: 52
SessionImpl.flush() line: 1210
SessionImpl.managedFlush() line: 399
JdbcTransaction.beforeTransactionCommit() line: 101
JdbcTransaction(AbstractTransactionImpl).commit() line: 175
HibernateTransactionManager.doCommit(DefaultTransactionStatus) line: 480
HibernateTransactionManager(AbstractPlatformTransactionManager).processCommit(DefaultTransactionStatus) line: 754
HibernateTransactionManager(AbstractPlatformTransactionManager).commit(TransactionStatus) line: 723
TransactionInterceptor(TransactionAspectSupport).commitTransactionAfterReturning(TransactionAspectSupport$TransactionInfo) line: 392
TransactionInterceptor.invoke(MethodInvocation) line: 120
ReflectiveMethodInvocation.proceed() line: 172
AfterReturningAdviceInterceptor.invoke(MethodInvocation) line: 50
ReflectiveMethodInvocation.proceed() line: 172
JdkDynamicAopProxy.invoke(Object, Method, Object[]) line: 202
$Proxy71.save(Account, String) line: not available
GeneratedMethodAccessor115.invoke(Object, Object[]) line: not available
DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: not available
Method.invoke(Object, Object...) line: not available
ImportServiceProvider.save(Object, String) line: 380

[编辑]我注意到的最后一件事是它不会出现在 MS SQL Server 上,只出现在 Oracle 上

最佳答案

我对你的问题有不同的建议。

建议 1:您在所有事务中错误地重复使用了同一 session 。

要检查这一点:在 saveRecord 中放置一个断点,并检查对 SessionImpl 的引用在 2 个连续调用中是否不同。

老实说,这不太可能是您的问题,因为您的代码是使用 MS SQL Server 运行的。所以这个建议唯一正确的机会是 MS SQL Server 中的约束与 Oracle 中的约束不同。此外,我认为在这种情况下,hibernate 会抛出更明确的异常。

建议 2:您遇到了 hibernate 4 中的错误

hibernate JIRA 在这方面有一些错误报告。 (没有您的代码,很难说出您的确切情况)。您的行为很有可能与这些错误之一有关:

https://hibernate.onjira.com/browse/HHH-7688 (这个和你的很接近,但还有一些)

这个错误有一些解决方法吗?

我有几个建议可以尝试:

将 hibernate.jdbc.batch_size 设置为大于 1。建议使用此解决方法 here由 Michale Wyraz 撰写,似乎有效。

不要使用反射:不确定它是否有用,但事务由 aop-proxy 处理,使用反射可能会导致绕过一些事务管理器代码(不应该,但这是一个需要验证的假设)。

更改连接 Release模式:所有这些错误(在 hibernate JIRA 中)都或多或少与 JdbcConnection 管理相关,因此更改 connection release mode可能会在某个时候帮助您确定问题。 (我并不是说改变它就是解决方案,如果你真的遇到了 hibernate 中的错误:你最好的选择可能是等待/贡献修复)

降级到 hibernate 3.X :再说一次,我不是说这是一个解决方案,但它可能表明您确实面临 hibernate 4 中的错误。

升级到 hibernate 4.2+:正如其他答案中所建议的以及关于 最近 hibernate 基本代码的更改:简单地升级 hibernate 可能会解决问题。

关于java - hibernate 异常 : proxy handle is no longer valid after database violation error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14621801/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com