Calling a long running process asynchronously on a button click in JSF

白昼怎懂夜的黑 提交于 2019-11-28 12:57:26

Just trigger an @Asynchronous EJB method. It'll fire and forget a separate thread and the bean action method will immediately return.

@Named
public class Bean {

    @EJB
    private Service service;

    public void submit() {
        service.asyncDoSomething();

        // Add message here.
    }

}
@Stateless
public class Service {

    @Asynchronous
    public void asyncDoSomething() {
        // ...
    }

}

See also:

Amit Bhati

You can call a method on click of button which can use Future or FutureTask, available in the java.util.concurrent package. Former is an interface, the latter is an implementation of the Future interface.

By using "Future" in your code, your asynchronous task will be executed immediately with the promise of the result being made available to the calling thread in the future.

Have a look at this link: Is it safe to start a new thread in a JSF managed bean?
Also have a look at this link: https://codereview.stackexchange.com/questions/39123/efficient-way-of-having-synchronous-and-asynchronous-behavior-in-an-application

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!