Tag: object
Hibernate Hello World Program (Hibernate Insert Query)
Mates, here is the first program in hibernate like saving an object into the database (don’t think we are inserting a record into the database 🙂 that is the case in JDBC, in hibernate we are just saving an object…
Example On Hibernate Select Query
This is an example for loading the object from the database remember in the hibernate loading 1 object from the database means applying select command (select * from _____) for fetching one complete record from the database. Files required…
Hibernate Versioning Example, Hibernate Versioning Of Objects
Once an object is saved in a database, we can modify that object any number of times right, If we want to know how many no of times that an object is modified then we need to apply this…
Setter Injection With Objects, Spring Dependency In The Form Of Objects
In previous example, we have seen that our spring bean class object depends on the string primitive, and now will see what if our class is depends on other class object, i mean dependency in the form of object….