Data Transformation: CSV to XML With Apache Camel
1.0 Overview
Data Transformation means transforming data from one form to another. For example, XML to CSV, XML to JSON, etc. Data Transformation in Apache Camel can be achieved by using Processor in routing logic, using bean, or by using Transform() in DSL.
In this article, we will see how to transform CSV to XML using Processor in routing logic. https://goo.gl/H7QSFC #DataIntegration #ML
Communicating Between Microservices
This article is featured in the new DZone Guide to Microservices. Get your free copy for more insightful articles, industry statistics, and more!
One of the most important aspects of developing microservices rather than a monolithic application is an inter-service communication. With a monolithic application, running on single process invokes between components are realized on language-level method calls. If you are following the MVC design pattern during development, you usually have model classes that map relational databases to an object model. Then, you create components which expose methods that help to perform standard operations on database tables like create, read, update, and delete. The components most commonly known as DAO or repository objects should not be directly called from a controller, but through an additional layer of components which can also add some portion of business logic if needed. https://goo.gl/uoHVG4 #DataIntegration #ML

