RubyTuesdayDONO
RubyTuesdayDONO

Reputation: 2378

Mongo repository for Spring Batch?

Is there a Mongo-based job repository for Spring Batch? If not, would I need to implement JobInstanceDao and its siblings? Are there any examples or existing works that would help in this endeavor?

Upvotes: 6

Views: 4929

Answers (2)

Vaibhav Fouzdar
Vaibhav Fouzdar

Reputation: 309

I have a github project which enhanced JBaruch's Springbatch-over-mongodb to newer versions of

  • Spring framework (4+)
  • Spring-batch (3+)
  • Mongo DB driver: 2.11.2

https://github.com/vfouzdar/springbatch-mongoDao

Though I have tested it and have a upgraded almost all of junits from JBaruch's project but it is still under BETA phase. If somebody is interested then s/he can give a try.

Upvotes: 2

Michael Pralow
Michael Pralow

Reputation: 6630

there is a https://github.com/jbaruch/springbatch-over-mongodb project, it looks discontinued, but it might give you a better start

Upvotes: 6

Related Questions