我真想知道为什么这会导致“锁等待超时超过;尝试重新启动事务”。这是innodb,默认隔离级别是repeatable read。好吧,select语句不应该给出这个错误。此外,这里既不涉及事务,也不涉及“select for update”。另外,这两个表中没有涉及触发器。自动提交已关闭。
查询:
SELECT cart.cart_id, profile_id,cart_data, cart.created_ts,
cart.last_updated_ts, cart.last_updated_by, version, cart_item_id, cartItem.cart_id,
cart_item_data, cartItem.created_ts, cartItem.last_updated_ts,
cartItem.last_updated_by
FROM est_cart cart
LEFT OUTER JOIN est_cart_item cartItem
ON cart.cart_id = cartItem.cart_id
WHERE cart.profile_id=:profileId
下面是如何在java代码中检索它。
public Cart loadCart(String profileId) {
try (Context time = loadCartFromDBTimer.time()) {
MapSqlParameterSource sqlParameterSource = new MapSqlParameterSource();
sqlParameterSource.addValue(PROFILE_ID, new BigInteger(profileId));
return jdbcTemplate.query(cartDAOConfig.getFindCartByProfileId(), sqlParameterSource, new CartResultSetExtractor());
} finally {
logger.debug(FINALLY_BLOCK_CONSTANT);
}
}
在事务中不调用loadcart。
提前谢谢
暂无答案!
目前还没有任何答案,快来回答吧!