Java EJB3.0和WebLogic11g的异步方法

Java EJB3.0和WebLogic11g的异步方法,java,jakarta-ee,asynchronous,ejb-3.0,weblogic11g,Java,Jakarta Ee,Asynchronous,Ejb 3.0,Weblogic11g,以异步方式调用EJB3.0(WebLogic11g)的正确方法是什么 在Jboss中存在异步 Echo asynchEcho = Asynch.getAsynchronousProxy(echo); System.out.println("-------- Asynchronous call"); ret = asynchEcho.echo("asynchronous call"); System.out.println("Direct return of async invocation is

以异步方式调用EJB3.0(WebLogic11g)的正确方法是什么

在Jboss中存在异步

Echo asynchEcho = Asynch.getAsynchronousProxy(echo);
System.out.println("-------- Asynchronous call");
ret = asynchEcho.echo("asynchronous call");
System.out.println("Direct return of async invocation is: " + ret);  
在EJB3.1中,我们有@Asynchronous注释

但是使用EJB3.0我能做什么?Weblogic 11G有什么特别的吗


提前感谢

您在这里想要实现什么?你的例子基本上是同步的。你想在这里实现什么?您的示例基本上是同步的。