gpt4 book ai didi

mysql - Hibernate findById 没有找到它以前找到的记录

转载 作者:行者123 更新时间:2023-11-28 23:54:43 26 4
gpt4 key购买 nike

我们有一个使用“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 找不到记录。是什么赋予了?我们没有进行任何缓存(默认的一级缓存除外)。

<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>

任何见解、想法或 . . .好吧,任何事情,不胜感激。

最佳答案

是否有可能在线程 10 开始其事务时 ID 尚未完全提交?所以基本上我在问 - 如果数据库中已经有购物车 49(比如在程序开始时)线程是否仍然存在这个问题?

关于mysql - Hibernate findById 没有找到它以前找到的记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1015778/

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