dinesh Archive

Spring Batch Example XML to MongoDB

Spring Batch and MongoDB- In Spring Batch version introduce NoSQL database support with introducing org.springframework.batch.item.data package which contain following classes. AbstractPaginatedDataItemReader.class GemfireItemWriter.class MongoItemReader.class MongoItemWriter.class Neo4jItemReader.class Neo4jItemWriter.class RepositoryItemReader.class RepositoryItemWriter.class SpELMappingGemfireItemWriter.class Spring Batch Spring Batch is a …

JAXB Unmarshalling Example

By the help of UnMarshaller interface, we can unmarshal(read) the object into xml document.In this example, we are going to convert simple xml document into java object. Let’s see the steps to convert XML document …

JAXB Marshalling Example

In this tutorial we are using Marshaller interface, we can marshal(write) the object into xml document. In the previous page, we have seen the simple example of converting object into xml. JAXB Marshalling Example In …