-
Object Persistency (1 messages)
- Posted by: Vikas Dharmapurikar
- Posted on: October 28 2004 04:52 EDT
What are the different ways in java to save object in persistence form.Threaded Messages (1)
- Object Persistence by Prabudhabharat Bansode on July 10 2010 06:12 EDT
-
Object Persistence[ Go to top ]
- Posted by: Prabudhabharat Bansode
- Posted on: July 10 2010 06:12 EDT
- in response to Vikas Dharmapurikar
What are the different ways in java to save object in persistence form.
“Persistent” objects will be stored, typically to a database on disk, so that these objects can be reloaded into memory at a later time as needed, possibly after restarting the application. Persistent objects continue to maintain their state and behavior in an application. There are several commonly accepted ways to implement object persistence:
- Manually writing code that maps the objects into a relational database (RDBMS).
- ORM frameworks and/or standard APIs, such as Hibernate, Java Data Objects (JDO), Java Persistence API (JPA), and the Microsoft Entity Framework, that at least partially automate the OR mapping process.
- Object oriented database systems (ODBMS), which can store objects natively, e.g., no mapping code required, and additionally may offer advanced tools for agile development, such as schema evolution. These systems also utilize industry standard APIs like JDO or JPA.
Thanks,
Prabudhabharat Bansode