In the spirit of type safety associated with the CriteriaQuery JPA 2.0 also has an API to support Metamodel representation of entities. Is anyone aware of a fully functional implementation of this API (to generate the Metamodel... as opposed to creating the metamodel classes manually)? It would be awesome if someone also knows the steps for setting this up in Eclipse (I assume it's as simple as setting up an annotation processor, but you never know).

EDIT: Just stumbled across Hibernate JPA 2 Metamodel Generator . But the issue remains since I can't find any download links for the jar

EDIT 2: Awhile has passed since I asked this question, but I thought I'd come back and add a link to the Hibernate JPA Model Generator project on SourceForge

link|improve this question

feedback

4 Answers

up vote 19 down vote accepted

It would be awesome if someone also knows the steps for setting this up in Eclipse (I assume it's as simple as setting up an annotation processor, but you never know)

Yes it is. Here are the implementations and instructions for the various JPA 2.0 implementations:

EclipseLink

Hibernate

OpenJPA

DataNucleus


For Hibernate, the implementation is provided by hibernate-jpamodelgen-1.0.0.Final.jar

link|improve this answer
any chance for a link to a compiled Hibernate Static Metamodel Generator (in a form of a JAR file)? What I found only contained sources and pom.xml. I don't use maven and just want a simple JAR which I can't seem to find – Andrey Jun 14 '10 at 14:05
@yamsha: Link to the jar added. – Pascal Thivent Jun 14 '10 at 14:13
2  
Pascal, you're a life saver (again). I've been looking for that jar file for hours :)) – Bogdan Aug 24 '10 at 17:28
@Bogdan: Well, glad it was helpful for you too then :) – Pascal Thivent Aug 24 '10 at 20:12
Pascal, you could have linked to the answer instead of googling and copypasting it. – mikaelhg Nov 24 '11 at 16:27
feedback

Alright, found it

They hid it well...

The set-up is described on Hibernate's website

link|improve this answer
feedback

Just wanted to bring a small detail to attention.

The link provided by Pascal above for EclipseLink does not take you to correct page. Somehow the last paranthesis is not a part of the URL though the text has it.

The correct link is UserGuide/JPA/Using the Canonical Model Generator (ELUG)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.