Two Type-Safe Criteria API Proposals for JPA 2.0
Introduced two years ago as part of Java EE 5, the Java Persistence API provides a POJO persistence model for object-relational mapping. It was developed by the EJB 3.0 software Expert Group as part of JSR-220.
Persistence consists of three areas:
- The API, defined in the javax.persistence package.
- The Java Persistence Query Language (JPQL).
- Object/relational metadata.
Whilst the JPQL significantly improved working with persistent Java objects, JPQL queries are still specified as strings. Thus whilst the queries operate over strongly-typed Java objects, they themselves are weakly typed. Building up queries in this way can be error prone, and requires specific IDE support for validation, auto completion and refactoring.
JPA 2.0, which is being developed under JSR-317 for inclusion in Java EE 6, aims to address this through the introduction of a new criteria API that offers a non-string-based approach for building queries. Expert Group lead Linda DeMichiel has published a blog entry describing the current draft of the API:
"Loosely speaking, a QueryDefinition object can be thought of as a set of nodes corresponding to the semantic constructs of the query:
- Domain objects, which correspond to the range variables and other identification variables of the JPQL FROM clause
- Where clause predicates, which comprise one or more conditional expression objects
- Select clauses, which comprise one or more "select item" objects
- Order-by and group-by items
- Subqueries
and so on..."
Whilst the proposal as it stands appears to be a good step forward from the existing JPA mechanism a number of people, amongst them Gavin King, have argued that the type safety of it could and should be further improved. King, whose Hibernate O/R tool was amongst those that pioneered the use of a type-safe criteria API and was a significant influence on EJB3, has now submitted his own proposal to the Expert Group. His proposal exploits the javax.annotation.Processor introduced in Java 6 to allow a compiler plugin to build a metamodel type for each persistent class in the application. King has written two blogs posts (one, two) which describe his approach in more detail and he and his team are currently working on a prototype annotation processor for use with javac.
The Expert Group is looking at the King proposal seriously and is considering it as a replacement for the current review draft. DeMichiel told us:
"Discussion has largely focused on ensuring that this API leads to a better experience for developers, both for static queries (where the type-safe aspects should certainly shine), and for dynamic queries. We are also looking at the metamodel generation aspects."
She added that the Expert Group is very keen to hear any feedback from the development community. Please feed any comments in to jsr-317-pdr-feedback at sun dot com.
nice ..but
by
serge boulay
too complicated
by
Thomas Mueller
I wonder if they considered technology like JaQu, LIQUidFORM, or Querydsl. Example (JaQu):
Product p = new Product();
List<Product> soldOutProducts =
db.from(p).where(p.unitsInStock).is(0).select();
Re: too complicated
by
Gavin King
Very verbose.
Yes, both JPA criteria API proposals are significantly more verbose than the fluent style of API you exemplify, and at first Emmanuel and I were *really* concerned about this and were advocating for the fluent style.
However, it turns out that some of the more complex cases just don't map as elegantly to the fluent style of API, and so the JPA group made the decision to go with the current approach. I'm still not 100% happy, but now that I'm used to it, I don't think it's a really bg problem. There is definitely more typing involved, however.
Code generation... I don't like it.
That's only because youve never used a Java6 Processor :-) It's not really "code generation" in the traditional sense at all. It's an extension to the type system that is built into the compiler. This is one of those things like annotations that are scary until you use them :-)
I wonder if they considered technology like JaQu, LIQUidFORM, or Querydsl.
Yes, I explain why these solutions don't work for us here:
in.relation.to/Bloggers/Java6CompilerPluginsAnd...
It's a nice idea, but it simply breaks down as soon as you want to write queries around anything other than a public attribute. Doesn't work with common JPA patterns.
Re: nice ..but
by
Gavin King
far better than strings but the code generation is really just a work around for language features that should allow for easy creation of domain specific languages
Yes, of course Java should have method and attribute literals. It's absurd that this was left out of the language.
But you can forget about getting them anywhere in the near future - let alone something like LINQ!
Actually I don't personally think LINQ is the right direction anyway. Better to have some more general-purpose declarative constructs in the language, that can be used to solve other problems beside "querying".
Re: too complicated
by
William H
"Unfortunately that particular approach forces you to represent every persistent attribute as a public getter method, which is not a restriction that is acceptable in the JPA specification."
So I guess they will have looked at least some of them
I’ve not looked at JaQu before – it looks very like writing SQL to me. What advantages does it offer over using something like raw JDBC and the Apache Dynabeans libraries?
Re: too complicated
by
Thomas Mueller
complex cases don't map elegantly
But most cases are simple. I suggest to support both: simple conditions with fluent, complex expressions with your style.
Code generation...
Yes, the Processor solves that. I hope tools support will improve.
queries around [non] public attribute
In my view that's an edge case.
Re: too complicated
by
Thomas Mueller
What advantages does it offer over using something like raw JDBC and the Apache Dynabeans libraries?From the JaQu docs: auto-complete, type checking, protects against SQL injection, smaller than Hibernate, no XML, no annotations.
Re: too complicated
by
Gavin King
In my view that's an edge case.
Actually it's an extremely common usecase to have private persistent field exposed only by getters that don't necessarily map exactly 1-1 to the fields.
That's how at least 30% - perhaps more - people use JPA.
Re: too complicated
by
Gavin King
But most cases are simple. I suggest to support both: simple conditions with fluent, complex expressions with your style.
Earlier today I sent an email to that effect to the JPA list. I'm not sure if it will go anywhere.
Re: nice ..but
by
serge boulay
Cayenne experience
by
Andrus Adamchik
Re: Cayenne experience
by
Andrus Adamchik
Re: too complicated
by
Rubem Azenha
Re: too complicated
by
Emmanuel Bernard
Re: too complicated
by
William H
I got a flashback when ...
I think I liked the first version more!
Something I find myself wondering about is how well this works when I have some reasonably complex SQL to execute - particularly if I need to rely on vendor specific stuff (SUM, IF, FROM_DAYS, TO_DAYS etc.) or if I’m using a UDF in MySQL say. I do quite a bit of work with financial companies and I’ve always ended up reverting to raw JDBC because everything else I’ve tried seems kind of painful.
Educational Content
Clojure in the Field
Stuart Halloway May 23, 2013
Tuning the Size of Your Thread Pool
Kirk Pepperdine May 23, 2013




Hello stranger!
You need to Register an InfoQ account or Login to post comments. But there's so much more behind being registered.Get the most out of the InfoQ experience.
Tell us what you think