yathirigan
yathirigan

Reputation: 6059

What are some implementations of JSR 352 (Java for batch)?

Can we say Spring Batch is an implementation of the JSR 352 (spec for Batch Applications for the Java Platform) ?

What are some other implementations of JSR 352 ?

Upvotes: 6

Views: 2696

Answers (2)

Clément Gibert
Clément Gibert

Reputation: 441

Jberet is an another implementation of the JSR-352. It is stable and used for JEE projects, Wildfly has an integrated support for jberet with Jboss EAP.
https://github.com/jberet/jsr352

Upvotes: 2

Michael Minella
Michael Minella

Reputation: 21463

Yes. Spring Batch does implement the SE requirements for JSR-352. You can read more about that in the documentation here: http://docs.spring.io/spring-batch/trunk/reference/html/jsr-352.html

EDIT: This implementation was removed in Spring Batch 5. Versions of Spring Batch prior to Spring Batch 5 do include an implementation of JSR-352.

Upvotes: 1

Related Questions