Registry / other / spring-batch-infrastructure

spring-batch-infrastructure

JSON →
library6.0.3javamavenunverified

The Spring Batch Infrastructure is a set of low-level components, interfaces and tools for batch processing applications and optimisations.

<dependency> <groupId>org.springframework.batch</groupId> <artifactId>spring-batch-infrastructure</artifactId> <version>6.0.3</version> </dependency>
INSTALL
IMPORT
SIG · SPRING-BATCH-INFRA
S
spring-batch-infrastructure
otherjavav6.0.3
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

ItemReader
org.springframework.batch.item.ItemReader

Implements a simple ItemReader that reads three items.

import org.springframework.batch.item.ItemReader; public class Quickstart { public static void main(String[] args) throws Exception { ItemReader<String> reader = new ItemReader<String>() { private int count = 0; @Override public String read() { if (count < 3) { return "item" + count++; } return null; } }; String item; while ((item = reader.read()) != null) { System.out.println(item); } } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
6.0.3latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
20 hits · last 30 days
node
10
Resources
spring-batch-infrastructure — mvn dependency:get spring-batch-infrastructure · libregistry