DOC

org.digibooster.spring.batch : spring-batch-context

Maven & Gradle

Feb 17, 2023
2 stars

spring-batch-context · The aim of this library is to allow developers who use spring-batch to propagate information from the main thread that runs the batch to the executions context of the batch items : ItemReader, ItemProcessor and ItemWriter. For example we some times need to extract the current user from Security Context, so instead of writing the code that passes the current user information as a job parameter we let this library to handle it. This library can be extended to support any information developer want to add.

Table Of Contents

Latest Version

Download org.digibooster.spring.batch : spring-batch-context Javadoc & API Documentation - Latest Versions:

All Versions

Download org.digibooster.spring.batch : spring-batch-context Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
1.1.x
1.0.x

How to open Javadoc JAR file in web browser

  1. Rename the file spring-batch-context-1.1.0-RELEASE-javadoc.jar to spring-batch-context-1.1.0-RELEASE-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder spring-batch-context-1.1.0-RELEASE-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "spring-batch-context-1.1.0-RELEASE-sources.jar" -d "spring-batch-context-1.1.0-RELEASE-javadoc" -subpackages 

Advertisement