JPA 2 MetaModel Generation using Eclipse
Connect to us ( @twitter | @facebook )JPA 2.0 introduces the strongly typed Criteria API for going away with the Java Persistence Query (JQL) language. It comes with the metamodel for helping the typed...
View ArticleJPA 2 MetaModel Generator using Ant
Connect to us ( @twitter | @facebook )In my previous article I have explained how to generate metamodel using your Eclipse IDE. However, in most scenarios you will have to create from your build...
View ArticleJPA EntityManagerFactory Vs Hibernate’s SessionFactory
Connect to us ( @twitter | @facebook )If you are using the JPA’s standard specification implementation (Read : Introduction to JPA), then you would use EntityManagerFactory for opening the session....
View ArticleHow To Create EntityManagerFactory in JPA
Connect to us ( @twitter | @facebook )This tutorial explains how to create EntityManagerFactory in your JPA application when you are writing your first JPA programming. It is the standard way of...
View ArticleTypedQuery in JPA 2
Connect to us ( @twitter | @facebook )One of the new feature introduced in JPA 2.0 is using the TypedQuery interface for building the query. This can be used with the CriteriaBuilder in JPA 2. As the...
View ArticleJPA 2 Tutorials
Connect to us ( @twitter | @facebook )Java Persistance API (JPA) is the object relational mapping (ORM) specification for Java EE applications. JPA 2 is the second major release for the JPA framework...
View ArticleJPA Vs Hibernate
Connect to us ( @twitter | @facebook )I have come across this question from many of our readers and who ever working on the hibernate framework : What is the difference between Java Persistence API...
View ArticleJPA Annotations – @Temporal
Connect to us ( @twitter | @facebook )@Temporal annotation in JPA implementation can only be used with the fields and property get methods. Also, this annotation can be specified for the persistent...
View ArticleJPA 2.0 New Features
Connect to us ( @twitter | @facebook ) Java Persistance API (JPA) is the object relational mapping (ORM) specification for Java EE applications. It is only the specification, every framework owners can...
View Article