views:

92

answers:

5

Sometimes, it's very tediously to make own configuration, find all libraries, check it ... So, is there any ready typical (template) config for appropriative task?

A: 

There is no ready made runtime config for your application but you can use things like Maven or Ivy to manage all the JARs you need automatically.

Aaron Digulla
A: 

You could start from one of the examples as provided in the Spring download package and modify it to suits your need.

Thierry-Dimitri Roy
+1  A: 

Maybe you'll find what you're looking for here: http://code.google.com/p/project-template/.

Pascal Thivent
+3  A: 

AppFuse can be used for generating project templates for your given choice and combination of technologies.

skaffman
+2  A: 

Spring Roo is designed for this. It's on RC2 for their 1.0 release now.

It has a command shell environment that allows you to pick and setup the parts of the Spring application you'd like to use. It generates the Spring config files, Maven setup, and templates the Java classes for you.

Besides being great for templating, it's also a good way to get yourself introduced to other parts of the Spring application stack (Web Flow, Security).

Jason Gritman