0
サービスで
@Transactional
public void operation(Stock val) {
Stock findStock = stockDAO.find(val);
Product findProduct = productDAO.find(findStock.getProductId());
Item findItem= itemDAO.find(findProduct.getItemId());
}
春は、トランザクションを開いて、それに応じて閉じます。
接続が開いてDBに3回ぶつかっているので、費用はかかりますか? (接続が1回開かれる)/ ORを使用する必要がありますか?