Spring Batch Integration Flashcards
(5 cards)
1
Q
How can Spring Batch interact with Spring Integration?
A
By using message-driven batch jobs.
2
Q
How can you use Spring Batch with Apache Kafka?
A
By implementing a custom ItemReader that reads messages from Kafka.
3
Q
How do you trigger a batch job using Spring Scheduler?
A
By scheduling a JobLauncher call with @Scheduled.
4
Q
How do you monitor Spring Batch job in a Spring Boot Admin UI?
A
By exposing job execution metrics via Actuator endpoints.
5
Q
How do you persist job execution data in Redis?
A
By implementing a custom JobRepository.