I'm running into a compile error while trying to use Spring-JMS. A quick Google search only turned up one matching result, but I was unable to get anything useful out of it.

I'm using the following code:

public class Class extends AbstractClass {

    /** {@inheritDoc} */
    @Override
    public void acceptImportableItem(final ImportableItem<File> item) {
        JmsOperations template = getJmsTemplate();

        template.convertAndSend(item);
    }
}

When I try to compile it, I receive the following compile error:

cannot access javax.jms.Destination

and

class file for javax.jms.Destination not found

Nowhere in my code to I reference javax.jms.Destination. Do any of you have any idea why that error would crop up?

link|improve this question

1  
Do you have jms.jar or similar in the classpath? – rodrigoap Feb 23 '11 at 22:18
feedback

1 Answer

up vote 1 down vote accepted

JmsOperations requires the javax jms classes for some of its methods, so you need them in your build path. You are going to need your JMS provider's implementations on your classpath at runtime, anyway.

link|improve this answer
Spring abstracts complexity of jms from developer; internaly it uses interfaces provided by javax.jms classes. – blob Feb 24 '11 at 5:35
It's odd that my source doesn't reference any of this stuff. That said, you're correct: it is needed at compile time. – dskiles Feb 24 '11 at 21:12
feedback

Your Answer

 
or
required, but never shown

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