How I can setup Hibernate for a Dynamic Web application by using Eclipse Helios? I am a newbe so please let me know if there is any example.

I tried for Java application and included all JARS and it worked fine. But don't understand how I can do it for Web application and test it.

I will use Struts2 so I will appreciate if I can get appropriate example or guidance.

link|improve this question

25% accept rate
feedback

3 Answers

Drop the jars in WEB-INF/lib. Those jars are automatically added by Eclipse to the project build path, and constitute (with the WEB-INF/classes directory and the container classpath) the classpath of the webapp.

link|improve this answer
feedback

http://hardik4u.wordpress.com/2008/09/02/struts-2-hibernate-3-integrationcomplete-using-eclipse/

Struts2 and Hibernate Framework Create in Eclipse ..?

link|improve this answer
Its always better to have some descriptions rather than simple links – Umesh Awasthi Jan 20 at 15:25
yes, but the link will tell us very clearly. – Ramesh K Jan 20 at 15:50
IMHO SO is not about links a small desciption always a better way to go – Umesh Awasthi Jan 20 at 16:03
thank you Umesh – Ramesh K Jan 20 at 16:05
Thank you all for your kind replies. – aswininayak Jan 24 at 15:31
show 2 more comments
feedback

First, download Struts2, and import example WAR file into Eclipse. You can find it from the source folder: struts-2.3.1-all\struts-2.3.1\apps\struts2-blank.war

Second, you should install Eclipse Hibernate Plugin. Goto Window > Preferences > Install/Update > Available Software Sites and add following link and name it JBossTools or something.

http://download.jboss.org/jbosstools/updates/helios/

Depending on your needs you can install Hibernate Plugins for many project types. In this case, select web application plugin.

And after, you should include Hibernate Core libraries into your classpath. I would recomment Hibernate 3.6 and greater. Because it does not depend on asm (asm-3.3.jar, asm-commons-3.3.jar ...) anymore. If you use earlier versions you might encounter some problems, since Struts2 also depend on asm libraries.

Then create your database, and use following link to configure and generate model bean classes.

http://casteyo.wordpress.com/2007/06/06/conf_hibernate/

Now you don't need to write mapping files by yourselves. And with DAO factory pattern you have your way to finish your project.

Hope this helps, and Goodluck

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.