Tuesday, March 1, 2011

How to install hibernate in eclipse

In order to do a database project in eclipse, we need to install a hibernate plug-in.

Go to Help -> Install New Software -> Work with: Add the following link - http://download.jboss.org/jbosstools/updates/stable/

1. Check Select the required installation files and click Next.
2. I have selected Web and JavaEE Development.
3. Proceed to accept license agreement and click Install.
4. It will ask to Restart and you are done.

See my next post to create a new hibernate project.

Sunday, January 9, 2011

jquery interfering with rich:tabPanel and rich:tab

I had included the jquery file into my project and found that it interfered with the rich:tabPanel and rich:tab of jquery. The solution to this is to use - jQuery.noConflict(); . Declare a variable containing like $j = jQuery.noConflict(); and replace "$" with "$j"

e.g -