Uses of Class
org.springframework.jms.JmsException
Packages that use JmsException
Package
Description
This package contains integration classes for JMS,
 allowing for Spring-style JMS access.
Provides a PlatformTransactionManager implementation for a single
 JMS ConnectionFactory, and a SingleConnectionFactory adapter.
Core package of the JMS support.
This package contains the base message listener container facility.
Message listener adapter mechanism that delegates to target listener
 methods, converting messages to appropriate message content types
 (such as String or byte array) that get passed into listener methods.
This package provides generic JMS support classes,
 to be used by higher-level classes like JmsTemplate.
Provides a MessageConverter abstraction to convert
 between Java objects and JMS messages.
Support classes for Spring's JMS framework.
- 
Uses of JmsException in org.springframework.jmsSubclasses of JmsException in org.springframework.jmsModifier and TypeClassDescriptionclassRuntime exception mirroring the JMS IllegalStateException.classRuntime exception mirroring the JMS InvalidClientIDException.classRuntime exception mirroring the JMS InvalidDestinationException.classRuntime exception mirroring the JMS InvalidSelectorException.classRuntime exception mirroring the JMS JMSSecurityException.classRuntime exception mirroring the JMS MessageEOFException.classRuntime exception mirroring the JMS MessageFormatException.classRuntime exception mirroring the JMS MessageNotReadableException.classRuntime exception mirroring the JMS MessageNotWriteableException.classRuntime exception mirroring the JMS ResourceAllocationException.classRuntime exception mirroring the JMS TransactionInProgressException.classRuntime exception mirroring the JMS TransactionRolledBackException.classJmsException to be thrown when no other matching subclass found.
- 
Uses of JmsException in org.springframework.jms.connectionSubclasses of JmsException in org.springframework.jms.connectionModifier and TypeClassDescriptionclassException thrown when a synchronized local transaction failed to complete (after the main transaction has already completed).
- 
Uses of JmsException in org.springframework.jms.coreMethods in org.springframework.jms.core with parameters of type JmsExceptionModifier and TypeMethodDescriptionprotected MessagingExceptionJmsMessagingTemplate.convertJmsException(JmsException ex) Methods in org.springframework.jms.core that throw JmsExceptionModifier and TypeMethodDescription<T> TJmsOperations.browse(Queue queue, BrowserCallback<T> action) Browse messages in a JMS queue.<T> TJmsOperations.browse(String queueName, BrowserCallback<T> action) Browse messages in a JMS queue.<T> TJmsOperations.browse(BrowserCallback<T> action) Browse messages in the default JMS queue.<T> TJmsTemplate.browse(Queue queue, BrowserCallback<T> action) <T> TJmsTemplate.browse(String queueName, BrowserCallback<T> action) <T> TJmsTemplate.browse(BrowserCallback<T> action) <T> TJmsOperations.browseSelected(Queue queue, String messageSelector, BrowserCallback<T> action) Browse selected messages in a JMS queue.<T> TJmsOperations.browseSelected(String queueName, String messageSelector, BrowserCallback<T> action) Browse selected messages in a JMS queue.<T> TJmsOperations.browseSelected(String messageSelector, BrowserCallback<T> action) Browse selected messages in a JMS queue.<T> TJmsTemplate.browseSelected(Queue queue, String messageSelector, BrowserCallback<T> action) <T> TJmsTemplate.browseSelected(String queueName, String messageSelector, BrowserCallback<T> action) <T> TJmsTemplate.browseSelected(String messageSelector, BrowserCallback<T> action) voidJmsOperations.convertAndSend(Destination destination, Object message) Send the given object to the specified destination, converting the object to a JMS message with a configured MessageConverter.voidJmsOperations.convertAndSend(Destination destination, Object message, MessagePostProcessor postProcessor) Send the given object to the specified destination, converting the object to a JMS message with a configured MessageConverter.voidJmsOperations.convertAndSend(Object message) Send the given object to the default destination, converting the object to a JMS message with a configured MessageConverter.voidJmsOperations.convertAndSend(Object message, MessagePostProcessor postProcessor) Send the given object to the default destination, converting the object to a JMS message with a configured MessageConverter.voidJmsOperations.convertAndSend(String destinationName, Object message) Send the given object to the specified destination, converting the object to a JMS message with a configured MessageConverter.voidJmsOperations.convertAndSend(String destinationName, Object message, MessagePostProcessor postProcessor) Send the given object to the specified destination, converting the object to a JMS message with a configured MessageConverter.voidJmsTemplate.convertAndSend(Destination destination, Object message) voidJmsTemplate.convertAndSend(Destination destination, Object message, MessagePostProcessor postProcessor) voidJmsTemplate.convertAndSend(Object message) voidJmsTemplate.convertAndSend(Object message, MessagePostProcessor postProcessor) voidJmsTemplate.convertAndSend(String destinationName, Object message) voidJmsTemplate.convertAndSend(String destinationName, Object message, MessagePostProcessor postProcessor) <T> TJmsOperations.execute(Destination destination, ProducerCallback<T> action) Send messages to a JMS destination.<T> TJmsOperations.execute(String destinationName, ProducerCallback<T> action) Send messages to a JMS destination.<T> TJmsOperations.execute(ProducerCallback<T> action) Send messages to the default JMS destination (or one specified for each send operation).<T> TJmsOperations.execute(SessionCallback<T> action) Execute the action specified by the given action object within a JMS Session.<T> TJmsTemplate.execute(Destination destination, ProducerCallback<T> action) <T> TJmsTemplate.execute(String destinationName, ProducerCallback<T> action) <T> TJmsTemplate.execute(ProducerCallback<T> action) <T> TJmsTemplate.execute(SessionCallback<T> action) <T> TJmsTemplate.execute(SessionCallback<T> action, boolean startConnection) Execute the action specified by the given action object within a JMS Session.JmsOperations.receive()Receive a message synchronously from the default destination, but only wait up to a specified time for delivery.JmsOperations.receive(Destination destination) Receive a message synchronously from the specified destination, but only wait up to a specified time for delivery.Receive a message synchronously from the specified destination, but only wait up to a specified time for delivery.JmsTemplate.receive()JmsTemplate.receive(Destination destination) JmsOperations.receiveAndConvert()Receive a message synchronously from the default destination, but only wait up to a specified time for delivery.JmsOperations.receiveAndConvert(Destination destination) Receive a message synchronously from the specified destination, but only wait up to a specified time for delivery.JmsOperations.receiveAndConvert(String destinationName) Receive a message synchronously from the specified destination, but only wait up to a specified time for delivery.JmsTemplate.receiveAndConvert()JmsTemplate.receiveAndConvert(Destination destination) JmsTemplate.receiveAndConvert(String destinationName) JmsOperations.receiveSelected(Destination destination, String messageSelector) Receive a message synchronously from the specified destination, but only wait up to a specified time for delivery.JmsOperations.receiveSelected(String messageSelector) Receive a message synchronously from the default destination, but only wait up to a specified time for delivery.JmsOperations.receiveSelected(String destinationName, String messageSelector) Receive a message synchronously from the specified destination, but only wait up to a specified time for delivery.JmsTemplate.receiveSelected(Destination destination, String messageSelector) JmsTemplate.receiveSelected(String messageSelector) JmsTemplate.receiveSelected(String destinationName, String messageSelector) JmsOperations.receiveSelectedAndConvert(Destination destination, String messageSelector) Receive a message synchronously from the specified destination, but only wait up to a specified time for delivery.JmsOperations.receiveSelectedAndConvert(String messageSelector) Receive a message synchronously from the default destination, but only wait up to a specified time for delivery.JmsOperations.receiveSelectedAndConvert(String destinationName, String messageSelector) Receive a message synchronously from the specified destination, but only wait up to a specified time for delivery.JmsTemplate.receiveSelectedAndConvert(Destination destination, String messageSelector) JmsTemplate.receiveSelectedAndConvert(String messageSelector) JmsTemplate.receiveSelectedAndConvert(String destinationName, String messageSelector) voidJmsOperations.send(Destination destination, MessageCreator messageCreator) Send a message to the specified destination.voidJmsOperations.send(String destinationName, MessageCreator messageCreator) Send a message to the specified destination.voidJmsOperations.send(MessageCreator messageCreator) Send a message to the default destination.voidJmsTemplate.send(Destination destination, MessageCreator messageCreator) voidJmsTemplate.send(String destinationName, MessageCreator messageCreator) voidJmsTemplate.send(MessageCreator messageCreator) JmsOperations.sendAndReceive(Destination destination, MessageCreator messageCreator) Send a message and receive the reply from the specified destination.JmsOperations.sendAndReceive(String destinationName, MessageCreator messageCreator) Send a message and receive the reply from the specified destination.JmsOperations.sendAndReceive(MessageCreator messageCreator) Send a request message and receive the reply from a default destination.JmsTemplate.sendAndReceive(Destination destination, MessageCreator messageCreator) JmsTemplate.sendAndReceive(String destinationName, MessageCreator messageCreator) JmsTemplate.sendAndReceive(MessageCreator messageCreator) 
- 
Uses of JmsException in org.springframework.jms.listenerMethods in org.springframework.jms.listener that throw JmsExceptionModifier and TypeMethodDescriptionvoidAbstractJmsListeningContainer.initialize()Initialize this container.voidAbstractJmsListeningContainer.shutdown()Stop the shared Connection, callAbstractJmsListeningContainer.doShutdown(), and close this container.voidAbstractJmsListeningContainer.start()Start this container.voidDefaultMessageListenerContainer.start()Overridden to reset the stop callback, if any.voidAbstractJmsListeningContainer.stop()Stop this container.voidStop this listener container, invoking the specific callback once all listener processing has actually stopped.
- 
Uses of JmsException in org.springframework.jms.listener.adapterSubclasses of JmsException in org.springframework.jms.listener.adapterModifier and TypeClassDescriptionclassException to be thrown when the execution of a listener method failed.classException to be thrown when the reply of a message failed to be sent.
- 
Uses of JmsException in org.springframework.jms.supportMethods in org.springframework.jms.support that return JmsExceptionModifier and TypeMethodDescriptionprotected JmsExceptionJmsAccessor.convertJmsAccessException(JMSException ex) Convert the specified checkedJMSExceptionto a Spring runtimeJmsExceptionequivalent.static JmsExceptionJmsUtils.convertJmsAccessException(JMSException ex) Convert the specified checkedJMSExceptionto a Spring runtimeJmsExceptionequivalent.
- 
Uses of JmsException in org.springframework.jms.support.converterSubclasses of JmsException in org.springframework.jms.support.converterModifier and TypeClassDescriptionclassThrown byMessageConverterimplementations when the conversion of an object to/from aMessagefails.
- 
Uses of JmsException in org.springframework.jms.support.destinationSubclasses of JmsException in org.springframework.jms.support.destinationModifier and TypeClassDescriptionclassThrown by a DestinationResolver when it cannot resolve a destination name.