About Me

My photo
"Enoughtheory.com" had its humble beginning in the year 2011 by ( Founder of Enoughtheory.com ) Mr Ravi Kant Soni , an Enterprise Java and Spring Framework Specialist, with a bachelor degree (B.E) in Information Science and Engineering from Reva Institute of Technology at Bangalore. He has been into the software development discipline for many years now. Ravi has worn many hats throughout his tenure, ranging from software development, designing multi-tenant applications, integration of new technology into an existing system, to his current love of writing a Spring Framework book. Currently, he is a lead engineer at HCL Technology. Ravi has focused on Web and Enterprise development using Spring Framework for most of his career and has been extensively involved in application design and implementation. He has developed applications for Core-Bank, HR and Payroll System, and e-Commerce systems using Spring Framework. Ravi Kant Soni is author of book "Learning Spring Application development" http://learningspringapplicationdevelopment.com

Monday 7 November 2011

What is Java persistence?


  • Java persistence could be defined as storing anything to any persistence store in the Java programming language.
  • There are many ways to persist data in Java, to name a few, JDBCserialization, file IO, JCAobject databases, or XML databases.
  • Most things that you do on a computer or web site that involve storing data, involve accessing a relational database.
  • Relational databases are the standard persistence store for most corporations from banking to industrial.
  • There are many things that can be stored in databases from Java. Java data includes strings, numbers, dates and byte arrays, images, XML and Java objects.
  • Many Java applications use Java objects to model their application data
  • Java is an Object Oriented language, storing Java objects is a natural and common approach to persisting data from Java.

No comments:

Post a Comment