Is it possible to get RabbitMQ to forward messages intended for a queue in vhost A to the same queue in vhost B within the same broker? In the past, it made sense to segregate traffic into their own...
Type: Posts; User: kurron; Keyword(s):
Is it possible to get RabbitMQ to forward messages intended for a queue in vhost A to the same queue in vhost B within the same broker? In the past, it made sense to segregate traffic into their own...
I went to the Spring Data JPA website to grab the latest bits and got a bit confused. The documents point to 1.3.0 but the download link and Maven coordinates point to 1.2.0? My project is using...
I've come to appreciate the power of the Spock testing framework and use it for my unit tests. I also enjoy the convenience of the Spring testing framework for my integration tests. Is it possible...
Thanks! That seems to have done the trick. I obviously do not understand the nuances between the two channel types and would love a quick explanation. I had a minor error in my XML that prevented...
Thank you for your reply. The configuration I had to use was this one, due to the fact that our AMQP connection factory bean is named "connectionFactory" and not "rabbitConnectionFactory":
...
Thanks for the quick replies. I've attached the relevant files for your examination. I'm hoping it is something silly that I'm doing in my configuration.
Thanks,
Ron
All, I have a working application that currently uses Spring AMQP. When handling requests from the web tier, we use AMQP Template's sendAndReceive method which takes care of creating a temporary...
We have a set of MVC controllers that work fine in Spring 3.0 but break in 3.1. The issue is that the controller request mappings never get applied so the URLs never get resolved. I spent some time...
@benhsu_bfly
I recently used detached objects as part of a Spring+Hibernate+Terracotta experiment and learned the following:
objects are detached when the transaction completes
objects...
So, if I understand you correctly, your suggestion is to couple my custom error handler with endpoints that are accessed via direct channels. The direct channel would ensure that the caller and...
We have a requirement to host web services over HTTP and JMS and have had success with Spring-WS in the past. A new requirement is to provide pluggable logic to back the various web services. The...