EJB3 stateful concurrent calls from different clients
问题 I have a rich client swing application calling a remote stateful ejb. I'm using JBoss 6.0. I have deployed the client in two different machines, i.e, different ip address, jvms, etc. The stateful has the following code: @Stateful public class MyStateful implements MyStatefulRemote{ public void test(){ System.out.println(this); System.out.println(Thread.currentThread()); System.out.println(Thread.currentThread().getThreadGroup()); // cpu intensive task String value = ""; for (int j = 0; j <