vote up 1 vote down star
1

I'm trying to learn Spring Batch, but the startup guide is very confusing. Comments like

You can get a pretty good idea about how to set up a job by examining the unit tests in the org.springframework.batch.sample package (in src/main/java) and the configuration in src/main/resources/jobs.

aren't exactly helpful. Also I find the Sample project very complicated (17 non-empty Namespaces with 109 classes)! Is there a simpler place to get started with Spring Batch?

flag

2 Answers

vote up 1 vote down

Before you jump on the Spring Batch wagon, you may want to read what SO's own cletus has to say about its shortcomings:

http://www.cforcoding.com/2009/07/spring-batch-or-how-not-to-design-api.html.

I recently evaluated Spring Batch, and quickly rejected it once I realized that it added nothing to my project aside from bloat and overhead. Spring Batch may eventually become an OK product (much like EJBs got it right this time around), but at the moment it looks suspiciously like a solution in search of a problem.

link|flag
I've already read it. It does seem like it will be useful for what I'm trying to do (and for architecture reasons I'm having to use Spring anyway). However I worry about the complexity (awful complex configuration files). In short, I'm still evaluating it myself, which is why I asked the question. – C. Ross Oct 26 at 20:35
@C. Ross - It's perfectly possible to use Spring in combination with Quartz (for scheduling) and avoid Spring Batch altogether. You can use a strategy pattern to generalize jobs and steps, and you can easily roll your own persistence by storing transactional states on your data. That's what we ended up doing, and it's working out fine. I just don't see Spring Batch offering anything of value to compensate for its headaches. – rtperson Oct 26 at 21:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.