Top "Spring-jms" questions

Spring provides a JMS integration framework that simplifies the use of the JMS API much like Spring's integration does for the JDBC API.

Writing messages with Spring JmsTemplate using a TransactionManager

Using Spring-JMS it is possible to receive messages within an external transaction context via the DefaultMessageListenerContainer. However the only documented …

java spring oracle-aq spring-jms
How can I Stop/start/Pause a @JmsListener (the clean way)

I am using Spring(boot) on my project and I access a JMS Queue (ActiveMQ) using : @JmsListener(destination = "mydestinationQueue") public …

spring-boot jms spring-jms message-listener
DefaultJmsListenerContainerFactory and Concurrent Connections not shutting down

I am using Spring 4.x's DefaultJmsListenerContainerFactory in order to connect to an ActiveMQ Queue, process the messages from that queue …

spring jms activemq spring-jms spring-messaging
Transaction Management in Spring JMS listener

I have a spring JMS listener which is listening to queue . Once the message arrives at the input queue , it …

java spring transactions spring-jms distributed-transactions
Spring batch JMS writer/reader example

Anybody know of a good resource for a detailed (more so than the Spring Batch docs) look at the uses …

jms spring-batch spring-jms
Closing Session when using Spring's CachingConnectionFactory

The java doc here related to Spring CachingConnectionFactory has comment : NOTE: This ConnectionFactory requires explicit closing of all Sessions obtained …

java spring jms spring-jms
jms producer performance with spring

i created a simple producer consumer simulation based on spring, jms and activemq, i'm trying to reach high performance from …

java spring jms activemq spring-jms
Activemq vs rabbitmq

I have read a few discussions and forums but still fail to understand which one is better rabbitmq vs activemq. …

java spring-mvc message-queue spring-jms spring-amqp
Why DefaultMessageListenerContainer should not use CachingConnectionFactory?

I was reading spring documentation on DefaultMessageListenerContainer It says "Note: Don't use Spring's CachingConnectionFactory in combination with dynamic scaling. Ideally, …

jms spring-jms
Adding Dynamic Number of Listeners(Spring JMS)

I have a requirement to add multiple listeners as mentioned in the application.properties file. Like Below, InTopics=Sample.QUT4,…

java spring spring-boot jms spring-jms