gpt4 book ai didi

java - 如何处理 Spring 包裹的 hibernate 异常?

转载 作者:行者123 更新时间:2023-12-02 13:09:01 27 4
gpt4 key购买 nike

spring 模板会将 hibernate 异常包装到 DataAccessExceptions 中。所以尝试直接捕获hibernate异常是行不通的。像这样

try{
springdao.update(row)
}
catch(HibernateException e) {
//won't do
}

问题:

  1. 捕获 DataAccessException 包装的 hibernate 异常的最佳实践是什么?只是catch(DataAccessException)

  2. 即使 spring 已经包装了该异常,但当它抛出时。它仅显示为原始 hibernate 异常。就像下面这样,为什么?

Could not synchronize database state with session org.hibernate.StaleObjectStateException: Row was updated or deleted by another transaction (or unsaved-value mapping was incorrect):

最佳答案

我认为最好处理DataAccessException,而不是HibernateExceptionSQLException。因为它以更普遍的方式描述了这个问题。如果您稍后更改 ORM/数据库,它将以相同的方式处理与数据库相关的异常处理。并且它还包含与 Hibernate 相同的异常。即使在非 SQL 数据库的情况下,也会引发相同的异常

Spring 文档说:

This exception hierarchy aims to let user code find and handle the kind of error encountered without knowing the details of the particular data access API in use (e.g. JDBC). Thus it is possible to react to an optimistic locking failure without knowing that JDBC is being used.

关于java - 如何处理 Spring 包裹的 hibernate 异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44038222/

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