Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

hibernate

Status
Not open for further replies.

WebGoat

MIS
Jul 16, 2005
85
US
i will be interested to know more about hibernnate if you please clarify my following questions




can i develope an web application with hibernate ?


is it good to use hibernate for web developement rather than conventional JSP,servlets ?




Does hibernate is replacing JSP,Servlets ? is it the time to throw away JSP,Servlets and picking up hibernate for developing wb applications ?
 
Hibernate is an Object-to-Relational Database mapping tool. It has nothing to do with Web programming per-se, except that it is one method of populating/persisting the domain objects used by the JSP/Servlets.

Tim
---------------------------
"Your morbid fear of losing,
destroys the lives you're using." - Ozzy
 
Hibernate is an Object-to-Relational Database mapping tool.

great statement ! its so clean ! you know, when you open a tutorial, they dont tell you such clean statement at the begining .

It has nothing to do with Web programming per-se, except that it is one method of populating/persisting the domain objects used by the JSP/Servlets

ahhh...i am gone now. what is domain object ? no, i have never heard of domain objects in JSP/Servlets before, did you mean simple class instances ? what do you mean by populating that ?


i am getting interested with this.

Thank you
 
>>>> great statement ! its so clean ! you know, when you open a tutorial, they dont tell you such clean statement at the begining .

Erm, thats pretty much the first sentance on the hibernate front page !!!


Please read the first paragraph on the hibernate web page, then read the "About" page, etc etc - you'll learn all you need to know there !

--------------------------------------------------
Free Java/J2EE Database Connection Pooling Software
 
So that was not ironic?

I'll never understand english humour

Cheers,
Dian
 
hi, sedj,tim,dian.. can you please calrify my second doubt about domain objects ?

Thanks for the link of the tutorial. i will have a look for the implementation . do you people use this tool ?
 
Indeed, I'm using Hibernate in one of my 'home projects'.

A 'Domain Object' is an instance of a class which represents some key object/concept specific to the 'problem domain' you are solving with your code. For example, if you were writing an online shopping application, then an instance of a 'Basket' class may very well be a domain object. The individual doing the buying ('Shopper' class?!) could be another. The 'Item's going into the 'Basket' would be some more.

Tim
---------------------------
"Your morbid fear of losing,
destroys the lives you're using." - Ozzy
 
A 'Domain Object' is an instance of a class which represents some key object/concept specific to the 'problem domain' you are solving with your code. For example, if you were writing an online shopping application, then an instance of a 'Basket' class may very well be a domain object. The individual doing the buying ('Shopper' class?!) could be another. The 'Item's going into the 'Basket' would be some more.

Thank you for the response
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top