java - Compile Error when using Spring JMS -


i'm running compile error while trying use spring-jms. quick google search turned 1 matching result, unable useful out of it.

i'm using following code:

public class class extends abstractclass {      /** {@inheritdoc} */     @override     public void acceptimportableitem(final importableitem<file> item) {         jmsoperations template = getjmstemplate();          template.convertandsend(item);     } } 

when try compile it, receive following compile error:

cannot access javax.jms.destination 

and

class file javax.jms.destination not found 

nowhere in code reference javax.jms.destination. of have idea why error crop up?

jmsoperations requires javax jms classes of methods, need them in build path. going need jms provider's implementations on classpath @ runtime, anyway.


Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -