Suppose you have a class like this:
public class MyEJB {
@EJB
public OtherEJBLocal other;
public void callSomething() {
other.callAnotherMethod();
}
}
Will the method call on the second EJB necessarily run in the same thread as the initial call to MyEJB.callSomething() ?