I have been using QueryDSL with JPA2 for some time, and this is the most powerful combination for ORM that I know. The JPA API is a disaster. With QueryDSL, I also forgot about JPQL.
I would like to use QueryDSL with Play! Everything looks very good on Play, except for the built-in JPQL parts as strings. It reminds me of CakePHP ...
I want to have a refactoring query language query on Play (and some other things :)).
Using QueryDSL would be simple. It is needed only by EntityManager. But QueryDSL has this APT class generator (just like one from Hibernate for the citeria API).
Has anyone managed to get this class generator to work with Play? Can I recreate and reload these classes?
source
share