Skip to content

In a Spring Batch proof-of-concept (POC), the objective is to retrieve user information from a CSV file and efficiently insert it into a database in manageable chunks

Notifications You must be signed in to change notification settings

zim0101/spring-batch-poc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring Batch POC

In a Spring Batch proof-of-concept (POC), the objective is to retrieve user information from a CSV file and efficiently insert it into a database in manageable chunks

Project Structure

├── java
│   └── com
│       └── zim0101
│           └── springbatchpoc
│               ├── config
│               ├── controller
│               │   └── JobController.java
│               ├── job
│               │   └── import_user
│               │       ├── ImportUserBatchConfig.java
│               │       ├── UserItemProcessor.java
│               │       └── UserItemWriter.java
│               ├── model
│               │   └── User.java
│               ├── repository
│               │   └── UserRepository.java
│               └── SpringBatchPocApplication.java
└── resources
    ├── application.properties
    ├── csv_imports
    │   └── data.csv
    ├── static
    └── templates
        └── job.html

About

In a Spring Batch proof-of-concept (POC), the objective is to retrieve user information from a CSV file and efficiently insert it into a database in manageable chunks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published