How to Get Your REST Backend Rolling in 5 Minutes…With Zero Lines of Code!
The app is finally taking shape. Data is sitting in your datastore. Users are about to start bombarding the front-end with requests. Quite a familiar scenario for any standard web/mobile app developer.
You have approached the Big Question: How to get the ball rolling? How to transform user actions into actual backend datastore operations? https://goo.gl/9sN6eV #DataIntegration #ML
JMS Transaction Propagation Over Multiple Threads Using Spring
ICYMI: Java Messaging Service (JMS) is an API that is capable of creating, sending, and reading messages. JMS provides loosely coupled, reliable, and asynchronous communication functionality. Hence, JMS is used in enterprise applications to integrate multiple systems together.
When it comes to integration, it is paramount to guarantee the reliability of the overall solution as to not lose any message passing through the solution. This is where the JMS transactionality comes in handy, where you can read a message transactionally from a JMS queue and after performing all the required logic on the message, you can either commit or rollback the message. In the case of committing the message, it will be removed from the source queue, and in the case of a rollback, the message will remain in the JMS queue for a successive re-try attempt. https://goo.gl/dwtuyD #DataIntegration #ML

