I am new to Java / Spring and trying to build a simple application that will include some basic CRUD operations, and I would like to use Hibernate to access the data.
I use Maven as a build tool. My question is: how can I find out what dependencies are needed to use Hibernate? For example, I am using Spring 3.0.6, but how do I know which version of Hibernate to use with this version of Spring? Moreover, if there are several possible Hibernate dependencies, how can I find out which of them need to be turned on for the functionality I need? So far, this seems to be partly a reading of the documentation and partly trial and error.
Is there a final way to find out which Maven dependencies to use with a specific version of other dependencies? Any dependencies to use for certain bits of functionality?
Thank,
James.
James source
share