What is Hybernate Sprig?

Its Frame Work for Persistence

Showing Answers 1 - 5 of 5 Answers

Spring is the Framework and Hibernate is the collection of classes and interfaces that can be used to communicate between the java objects and database, the JDBC code is written derectly in the Hibernate classes and we can use them directly in our code , istead of writing the JDBC code in our code.

fer ex :  getHibernateTemplate().save();

getHibernateTemplate() is create the object and save() method is like insert statement , so one statement is enough, but we need to configure the connection details in the xml file.

  Was this answer useful?  Yes

msunil

  • Nov 11th, 2005
 

document of hybernate & spring

  Was this answer useful?  Yes

satish

  • Dec 15th, 2005
 

hai

this is satish , i am working as software engineer . iwant know about complete detailes of the hybernate and spring

pls help me

  Was this answer useful?  Yes

rakesh

  • Jul 17th, 2007
 

It is a tool used to map the pojo objects with the database objects.
It also reduces the burden of coding since we do not specify the java database connectivity. The hybernate creates internal mapping.

  Was this answer useful?  Yes

- Hibernate is ORM software (object rational mapping), it can be used to develop
persistence logic to interact with database for performing persistence operations.

-
Spring is a framework software to develop enterprise based business logic and it deals with complex logic.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions