【发布时间】:2010-11-04 04:27:56
【问题描述】:
我们有一个使用“findById”的非常简单的方法。
public Cart getCart(long cartId) {
Cart cart = null;
try {
dbSession.beginTransaction();
cart = (Cart)dbSession.findById(Cart.class, cartId);
dbSession.commitTransaction();
if (logger.isDebugEnabled()) {
logger.debug("The getCart call committed successfully");
}
} finally {
if (dbSession.needsRollback()) {
dbSession.rollbackTransaction();
}
}
logGetCartResults(cartId, cart);
return cart;
}
private void logGetCartResults(long cartId, Cart cart) {
if (logger.isDebugEnabled()) {
StringBuffer message = new StringBuffer("Cart id ");
message.append(cartId)
.append(" was ");
if (cart != null) {
message.append("not ");
}
message.append("null");
logger.debug(message.toString());
}
}
这个方法有时会被另一个应用程序快速连续调用(它基本上是另一个加载购物车的系统)。我们有一个创建购物车的线程,将记录提交到数据库,然后应用程序为需要进入数据库的每个项目调用一次。尽管其他应用程序按顺序发送并等待响应,但 tomcat 在单独的线程上获取这些响应。
我们看到对“getCart”的初始调用实际上能够找到记录。有时,一个调用会失败,即使在其他调用成功之后也是如此。以下是一些提供更多上下文的日志:
DEBUG 2009-06-18 16:10:57,145 [http-8080-Processor20] com.eroi.managers.impl.DefaultPurchaseManager: Looking for cartId 49
DEBUG 2009-06-18 16:10:57,146 [http-8080-Processor20] com.eroi.persistors.impl.DefaultPurchasePersistor: The getCart call committed successfully
DEBUG 2009-06-18 16:10:57,146 [http-8080-Processor20] com.eroi.persistors.impl.DefaultPurchasePersistor: Cart id 49 was not null
...
DEBUG 2009-06-18 16:10:57,522 [http-8080-Processor14] com.eroi.managers.impl.DefaultPurchaseManager: Looking for cartId 49
DEBUG 2009-06-18 16:10:57,523 [http-8080-Processor14] com.eroi.persistors.impl.DefaultPurchasePersistor: The getCart call committed successfully
DEBUG 2009-06-18 16:10:57,523 [http-8080-Processor14] com.eroi.persistors.impl.DefaultPurchasePersistor: Cart id 49 was not null
...
DEBUG 2009-06-18 16:10:57,934 [http-8080-Processor10] com.eroi.managers.impl.DefaultPurchaseManager: Looking for cartId 49
DEBUG 2009-06-18 16:10:57,934 [http-8080-Processor10] com.eroi.persistors.impl.DefaultPurchasePersistor: The getCart call committed successfully
DEBUG 2009-06-18 16:10:57,934 [http-8080-Processor10] com.eroi.persistors.impl.DefaultPurchasePersistor: Cart id 49 was null
所以。线程 20、14 成功,但线程 10 找不到记录。是什么赋予了?我们没有进行任何缓存(默认的 1 级缓存除外)。
<hibernate-configuration>
<session-factory>
<property name="current_session_context_class">thread</property>
<property name="hibernate.connection.datasource">java:/comp/env/jdbc/ourdb</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
</session-factory>
</hibernate-configuration>
任何见解、想法或 . . .好吧,任何事情,都值得赞赏。
【问题讨论】:
-
这听起来像是一个会话/事务处理问题,但是您的代码片段并没有向我们展示您是如何管理这些资源的。例如,您在何时何地获取会话?另外,假设 dbSession 是一个 Hibernate 会话对象,那么 Session 上就没有 commitTransaction() 方法。最后,您是否在任何地方指定了显式事务隔离?