I'm a newbie to Java EE, EJB3 and JBoss. I'm developing an EJB application which tests for the reachability of several devices using the ICMP protocol every 2 minutes.
The question is, whether it's okay to implement a Threadpool Executor from the java.util.concurrent
package so that I can create my own pool of threads which can run in the server (JBoss AS 5.1.0) environment or is there a better alternative?
There are several posts out there relating to this topic but I'm simply not able to grasp them probably because I'm new to Java EE.