I have a Java method which runs approximate one or two hours.I made an web ui using jsf and primeface for this.I would like to terminate and restart the method using commandButtons.How do i do that?
I use GlassFish server.
Thanks.
|
I have a Java method which runs approximate one or two hours.I made an web ui using jsf and primeface for this.I would like to terminate and restart the method using commandButtons.How do i do that? I use GlassFish server. Thanks. |
|||||||
|
Option: Work - staying on the Java EE pathOption: Thread - texas solution: get er done
|
||||
|
|
|
In general, if you have a long-running method/job, it's good practice be able to stop (or pause, etc) the job. This is typically done by letting the job run inside its own thread, and to let it frequently check a "stop" flag, which can be set by any other thread. Your command button can set the flag when it is clicked by a user. This is a common approach to let to threads communicate with each other. Good luck, Tom |
|||
|
|