О вашем коде
Я не проверял правильность самого запроса критерия, но, как упоминал Крис, вы смешиваете статические классы метамодели с EntityType
, который не раскрывает то, что вынаходясь в поиске.Предполагая, что ваши классы метамодели сгенерированы, удалите первую строку и импортируйте сгенерированные Meaning_
:
// final EntityType<Meaning> Meaning_ = em.getMetamodel().entity(Meaning.class);
final CriteriaBuilder cb = em.getCriteriaBuilder();
CriteriaQuery<Integer> cq = cb.createQuery(Integer.class);
final Root<Meaning> meng = cq.from(Meaning.class);
cq.where(meng.get(Meaning_.lastPublishedDate)); // add the appropriate import
cq.select(meng.get(Meaning_.objId));
TypedQuery<Integer> q = em.createQuery(cq);
return q.getResultList();
О генерации статических (канонических) классов метамодели
Вот установка MavenЯ использую для генерации канонических классов метамодели с EclipseLink:
<project>
...
<repositories>
<!-- Repository for EclipseLink artifacts -->
<repository>
<id>EclipseLink Repo</id>
<url>http://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/rt/eclipselink/maven.repo/</url>
</repository>
...
</repositories>
...
<pluginRepositories>
<!-- For the annotation processor plugin -->
<pluginRepository>
<id>maven-annotation-plugin</id>
<url>http://maven-annotation-plugin.googlecode.com/svn/trunk/mavenrepo</url>
</pluginRepository>
</pluginRepositories>
...
<dependencies>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>eclipselink</artifactId>
<version>2.1.0</version>
</dependency>
<!-- optional - only needed if you are using JPA outside of a Java EE container-->
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>javax.persistence</artifactId>
<version>2.0.2</version>
</dependency>
<dependencies>
...
<build>
<plugins>
<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<version>1.3.1</version>
<executions>
<execution>
<id>process</id>
<goals>
<goal>process</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<!-- Without this, the annotation processor complains about persistence.xml not being present and fail -->
<compilerArguments>-Aeclipselink.persistencexml=src/main/resources/META-INF/persistence.xml</compilerArguments>
<!-- For an unknown reason, the annotation processor is not discovered, have to list it explicitly -->
<processors>
<processor>org.eclipse.persistence.internal.jpa.modelgen.CanonicalModelProcessor</processor>
</processors>
<!-- source output directory -->
<outputDirectory>${project.build.directory}/generated-sources/meta-model</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<source>1.6</source>
<target>1.6</target>
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
...
</plugins>
</build>
</project>
Некоторые комментарии:
- EclipseLink обработчик аннотаций предоставляется основным артефактом, никакой дополнительной зависимости отдобавлять.
- По неизвестной причине процессор аннотаций не обнаружен, я должен перечислить его явно как
<processor>
. - Без
-Aeclipselink.persistencexml
процессор аннотаций жалуется на persistence.xml
отсутствует и не работает. - Я предпочитаю генерировать исходный код в
target
(я хочу clean
для его очистки).
В этой конфигурации статическийклассы метамодели генерируются и компилируются соответствующим образом.