Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

6 Answers

up vote 30 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

share|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
3  
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
show 1 more comment

Alright, found it

They hid it well...

The set-up is described on Hibernate's website

share|improve this answer

For Apache Maven users,

OpenJPA

<project>
  <build>
    <extensions>
      <extension>
        <groupId>org.apache.openjpa</groupId>
        <artifactId>openjpa-all</artifactId>
        <version>2.2.0</version>
      </extension>
    </extensions>
    <plugins>
       <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <fork>true</fork>
          <source>1.6</source>
          <target>1.6</target>
          <compilerArgument>-Aopenjpa.metamodel=true</compilerArgument>
        </configuration>
      </plugin>
    <plugins>
  </build>
</project>

Hibernate

<project>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
          <compilerArgument>-proc:none</compilerArgument>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.bsc.maven</groupId>
        <artifactId>maven-processor-plugin</artifactId>
        <executions>
          <execution>
            <id>process</id>
            <goals>
              <goal>process</goal>
            </goals>
            <phase>generate-sources</phase>
            <configuration>
              <processors>                                
                <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
              </processors>
            </configuration>
          </execution>
        </executions>
        <dependencies>
          <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-jpamodelgen</artifactId>
            <version>1.2.0.Final</version>
          </dependency>
        </dependencies>
      <plugin>
    <plugins>
  </build>
</project>

Following simple configuration seems work.

<project>
  <build>
    <extensions>
      <extension>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-jpamodelgen</artifactId>
        <version>1.2.0.Final</version>
      </extension>
    </extensions>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

you can run it with "mvn compiler:compile"

share|improve this answer

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)

share|improve this answer

Eclipse's JPA support through Dali has its own metamodel generator integrate with Eclipse. This should work on any JPA provider as the generated classes are standard.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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