Hi,
In Spring MVS application, we have a need to map the JSP pages (View) to corresponding Controller class methods.
What is the Spring API method used to map the View with Controller methods?
...
Type: Posts; User: ponsu; Keyword(s):
Hi,
In Spring MVS application, we have a need to map the JSP pages (View) to corresponding Controller class methods.
What is the Spring API method used to map the View with Controller methods?
...
Thanks Dave. That worked...
Hi,
I am using Spring-AMQP-1.0.0.M2.
I have a producer which has to populate a String message in Direct Exchange queue.
I have used same value for RoutingKey (ie.,test.queue) and...
Thanks for ther response Mark.
My requirement is that, I have to delete a queue with the queue name (using amqpAdmin.deleteQueue(queueName) method). So I need to check if there is already a...
Hi,
In Spring-AMQP, please let me know if there are any API methods for the following:
1. To check if a Queue already exists (using queue name).
2. To check if Exchange already exists (using...
Mark and Dave, Thanks for your clarifications.
I have another query on using onMessage(Message msg) method.
In onMessage() method, how can I find the name of the Queue from which the message...
Thanks Dave for your response.
As you have rightly pointed out, because of the presence of durable binding in rabbitmq server, the consumer always reads the message irrespective of the routing key...
Hi,
In consumer application, for listening for asynchronous messages, we can use either onMessage() or handleMessage() method while setting 'SimpleMessageListenerContainer.setMessageListener()'.
...
Thanks Dave for your response.
I did try using 'SimpleMessageListenerContainer' in the application code as shown below.
But it seems the "new Binding()" is not working with the specified...
Thanks Mark for looking into this.
What I meant by "so that they listen for messages indefinitely" was, once we create a Queue, it has to listen (all the time) for incoming messages in that...
Hi,
I have a windows application (written in Java) that will run 24/7.
This application will act as a Consumer for RabbitMQ server.
Different producers (other applications) will be...
Hi,
I have a .NET producer application which will populate the messages into RabbitMQ exchange.
Now I need to create a Java Consumer application to listen and read those messages from RabbitMQ.
...