Skip to content

Latest commit

 

History

History

SpringBatchXmlToCsv

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

SpringBatchXmlToCsv

Runtime Environment

Short & Quick introduction

Prepare the input XML file and corresponding domain object /mapped POJO

  • examResult.xml
  • com.websystique.springbatch.model.ExamResult
  • com.websystique.springbatch.LocalDateAdapter

Create an ItemProcessor

  • com.websystique.springbatch.ExamResultItemProcessor

Add a Job listener(JobExecutionListener)

  • com.websystique.springbatch.ExamResultJobListener

Create Spring Context with job configuration

  • src/main/resource/spring-batch-context.xml

Create Main application to finally run the job

  • com.websystique.springbatch.Main

Links