// Export Service
JmsInvokerServiceExporter exporter = new JmsInvokerServiceExporter();
exporter.setServiceInterface(serviceClass);
exporter.setService(service);
exporter.afterPropertiesSet();
// Set up MessageListenerContainer
DefaultMessageListenerContainer container = new DefaultMessageListenerContainer();
container.setConnectionFactory(cf);
container.setDestination(queue);