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.
feedback
|
well lets take a rather large company which needs a lot of batchjobs with spring integration you could set up a system to
actually its just
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 | ||||
|
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 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
| |||
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 | |||
|
feedback
|