vote up 0 vote down star

im trying to kick off a Runnable classes run method however i keep getting a NullPointerException, Im using WebSpheres commonj.workmanager to get an instance of executorService.this is the code im using.

executorService.execute(new Runnable()
    	{
    		public void run()
    		{
    			System.out.println("Inside run ()method..");
    		}
    	});

ANY IDEAS?

flag

2 Answers

vote up 3 vote down check

Are you checking whether executorService is null before calling execute()? If not, it sounds like you need to check the WebSphere docs.

link|flag
vote up 1 vote down

thanks for the reply, its the executorService that is null. Im using Spring to inject the property

link|flag
This information is better added as an edit to the question instead of an another answer. – Alex B Nov 18 '08 at 18:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.