Aakash Chandel wrote:1) Since I am creating a web app I think I might be needing more than just Hibernate core module? Not sure what all I need. Is there a way to figure out what all jars I need for a web application that uses Hibernate with Spring?
When creating a new project, the easiest way is to use a
Spring archetype. This ensures you get the Maven configuration right. (The ones from appfuse on top do that.
Aakash Chandel wrote:2) How can I found out what all dependencies are there for a specific jar? Is there any web page which shows all the dependencies?
Run this at the command line:
Aakash Chandel wrote:3) In Maven, is there any way to download a jar with all it's dependencies is a single shot through pom.xml?
That's how the pom works. It downloads any dependencies required for the jars in the pom.
As far as your actual error, that looks like a
Hibernate 3 class. Does
this address your issue?