Tag Archives: JMS

More advanced stuff with JMS and AWS SQS

As you might know SQS in AWS SQS stands for ‘Simple Queue Service’. While playing around with it I recently found one of the reasons why it may be called ‘simple’. In two previous posts (here and here) I showed … Continue reading

Posted in ActiveMQ, AWS, Spring Framework | Tagged , , , , | Comments Off on More advanced stuff with JMS and AWS SQS

Creating a Message Driven Bean with AWS SQS in Spring

In my previous post I showed a simple example how to use AWS SQS with Spring Framework to put messages on a queue and to read them from the queue. In this post I go one step further and use … Continue reading

Posted in AWS, Spring Framework | Tagged , , | 2 Comments

Using AWS SQS as JMS provider with Spring

Recently AWS published a new client library that implements the JMS 1.1 specification and uses their Simple Queue Service (SQS) as the JMS provider (see Jeff Barr’s post here). In my post I will show you how to set up … Continue reading

Posted in AWS, Spring Framework | Tagged , , , | 4 Comments

Configuring durable messages with SpringFramework

In our project we have a webservice that receives a message, processes it and sends a response back. Very common for a webservice I think 🙂 Now there was an extra request: log all messages in a database so we … Continue reading

Posted in JMS, Spring Framework | Tagged , , | Comments Off on Configuring durable messages with SpringFramework