我的问题很简单,如何使用Weblogic WorkManager在java中执行方法? 我不想使用任何Thread方法实现。
示例:
public class CallerClass {
public void callerMethod() {
// Execution
// Launch method in new thread
obj.asyncMethod();
// Continue before finishing ayncMethod
return;
}
public void asyncMethod() {
// Asynchronous method
}
}
答案 0 :(得分:1)
看看这是否有帮助,我发现它很有用。 using-the-weblogic-work-manager-to-delegate-long-running-tasks