Let's say I have two EJBs A and B:
public class A implements AInterface {
private B b;
...
//This method will NOT access database directly
public void a() {
//do something
b.b();
//do something
}
...
}
public class B implements BInterface {
@TransactionAttribute(TransactionAttributeType.SUPPORTS)
public void b() {
//Read database
}
}
- A.a() does not connect to database, but calls B.b()
- B.b() makes a SELECT to database
- A.a() has the default transaction attribute, which in this container is REQUIRED
Will the call to A.a() run in a transaction? Is the transaction initiated when A.a() is entered, when B.b() is entered, when the database is accessed, or some other time?
Baseline is that I don't want this to be run in an transaction, so I could use NOTSUPPORTED for A.a(), I guess (?), but I'm trying to also understand how involving or not involving database in different points of call stack affect the transactions.