I am a beginner to Spring and I have to do a project for school. What kind of project can I do which I can use Spring Batch and Integration. I know that I can write files into directories, write, read and modify comma separated files but I can`t picture a scenario which I can combine these technologies.

link|improve this question
+1 for interesting question – Gary Rowe Nov 22 '10 at 20:10
feedback

3 Answers

but I can`t picture a scenario which I can combine these technologies

well lets take a rather large company which needs a lot of batchjobs with spring integration you could set up a system to

  • manage the batchjobs
  • plan the jobs according to resources (e.g. run batchjobs in certain time windows to not break online business)
  • simply start/stop the jobs
  • provide job status views

actually its just

  • scheduling
  • reporting
  • managing

through many enterprise message concepts see http://www.eaipatterns.com/ its already linked at http://www.springsource.org/spring-integration

for your scope - the school project - and if you have really some jobs (3 and more), well you could build a batch start tool, a GUI (spring mvc) which provides buttons to start/stop/monitor/see reports for those jobs, but i think thats a really large project, which could easily span many man-weeks

link|improve this answer
feedback

Spring in General and Spring Batch in particular are technologies that embrace the use of interfaces, which basically means: you can pretty much deal with almost any possible data type, as long as you can wrap it into one or more of the key interfaces.

In the case of Spring Batch you mainly have to implement ItemReader and ItemWriter.

Here's an example:

Let's say you have a huge Excel file with 20000 addresses and you want to write that to a database.

Then you'd have to

  • Create an Address object
  • setup your database for it (perhaps using an ORM)
  • create an ItemReader that creates an Address object from a line of the excel file
  • create an ItemWriter that writes an Address to the database (perhaps using an ORM)
  • wire everything together using Spring Batch
link|improve this answer
So, what is the involvement of Spring Integration into steps you've mentioned? – dma_k Oct 15 '11 at 15:29
feedback

There is an excellent example of integrating the two (no pun intended) from the SpringSource blogger Dave Syer: PRACTICAL USE OF SPRING BATCH AND SPRING INTEGRATION

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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