I am trying to run a simple program using a spring configuration file. In the configuration I am creating a bean for the JMS template. When I run it from eclipse everything works perfect but if I try to run it from the command line I get the following error.

Error creatign bean with name JMSTEMPLATE definded in class path resource [config.xml]: Instantiation of bean failed; nested exception is java.lang.NoClassDefFoundError: javax/jms/JMSException

Does anyone know why this could be? I've double checked my class path and it is fine.

link|improve this question

60% accept rate
feedback

2 Answers

up vote 2 down vote accepted

You are forgetting to include the jms.jar in your classpath.

link|improve this answer
There was a small typo that took me forever to find, but this was the root of it all. – jim Jul 19 '11 at 13:39
feedback

Are you including JMS jars in your classpath? This error suggests that they are missing at runtime.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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