I am developing an application using IBM j9 JDK. When I try to use the following line of code:
ExecutorService es = Executors.newSingleThreadExecutor();
I get a runtime exception saying NoClassDefFoundError for java.util.Executors
Is there a different way I can open a concurrent thread using ibm j9?