gpt4 book ai didi

java - 从@transactional 公共(public)方法调用私有(private)方法时,将在私有(private)方法中使用相同的事务还是不使用事务

转载 作者:行者123 更新时间:2023-11-30 06:57:19 29 4
gpt4 key购买 nike

@Transactional
public class someClass implements someInterface {

@override
public void insertData() {
updateOtherTable();
}

private updateOtherTable() {
//will this use above transaction or will not use any transaction?
}
}

最佳答案

Spring 代理您的公共(public) insertData 方法,因此该方法中的所有内容都在事务中执行。所以是的,交易也适用于您的私有(private)方法。

关于java - 从@transactional 公共(public)方法调用私有(private)方法时,将在私有(private)方法中使用相同的事务还是不使用事务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33579636/

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