Spring + Hibernate ready configurations

Sometimes it is very tedious to create your own configuration, find all the libraries, check it ... So, is there a ready-made typical (template) configuration for a suitable task?

+2


source to share


5 answers


AppFuse can be used to create project templates for your chosen choice and combination of technologies.



+5


source


Spring Roo is designed for this. He's now on RC2 for version 1.0.

It has a shell environment that allows you to select and configure the components of the Spring application that you want to use. It generates Spring config files, Maven setup and Java class templates for you.



Besides being great for templates, it's also a good way to get to know other parts of the Spring application stack (web thread, security).

+3


source


You might find what you are looking for here: http://code.google.com/p/project-template/ .

+2


source


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

0


source


You can start with one of the examples provided in the Spring Boot package and modify it to suit your needs.

0


source







All Articles