From 537ad11a3a5b378e578e064808529e94d2d8fc27 Mon Sep 17 00:00:00 2001 From: Giuseppe Scaramuzzino Date: Mon, 20 Jul 2020 08:37:23 +0200 Subject: [PATCH] Create README.md add readme --- README.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..172c305 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# jpatutorial + +Complete Java Persistence API (JPA) Tutorial. + +The Java Persistence API (JPA) is a Java specification for accessing, persisting, and managing data between Java objects / classes and a relational database. JPA was defined as part of the EJB 3.0 specification as a replacement for the EJB 2 CMP Entity Beans specification. JPA itself is just a specification, not a product; it cannot perform persistence or anything else by itself. JPA is just a set of interfaces, and requires an implementation.