I have a DAO class with the following two methods:
@Transactional
public void save() throws Exception {
}
@Transactional
public void save2() {
}
In the service class, I call these methods as follows:
public void processDAO() {
dao.save();
dao.save2();
}
My question is, will these methods be executed as part of the same transaction or in independent transactions, or none of them?
Thanks and best regards,
source
share