7. 예제4: Spring Batch - Read from DB and write to flat file
이번 예제에서는 Spring Batch의 ItemReader, ItemWriter를 사용하여 데이터베이스의 데이터를 읽어 파일에 저장하는 방법을 알아보도록 하겠습니다. 6.예제3: Spring Batch - Read from flat file and write to DB 에서 데이터베이스에 저장된 Player 정보를 다시 읽어 파일에 저장하는 예제입니다. 소스 코드는 첨부파일을 참조하세요. 예제의 각 파일에 대한 기본적인 설명은 다음과 같습니다. 1. spring-context.xml: Spring Batch Infrastructure 설정. 2. com.hjh,batch.bean package PlayerBean: 데이터베이스의 Player 정보를 매핑할 오브젝트. 3. com.hjh.batch.ite..
Spring/SpringBatch
2016. 3. 31. 15:26