Skip to content
Snippets Groups Projects
Commit 9e5b78b7 authored by Goik Martin's avatar Goik Martin
Browse files

Criteria / metamodel support

parent 5f767d0f
No related branches found
No related tags found
No related merge requests found
......@@ -22,9 +22,10 @@
</includes>
</fileSet>
<fileSet encoding="UTF-8">
<directory></directory>
<directory/>
<includes>
<include>.gitignore</include>
<include>Readme.md</include>
</includes>
</fileSet>
</fileSets>
......
JPA 2 project template
======================
General:
--------
Executing »`mvn test`« generates metamodel classes being required for
criteria based queries.
Eclipse users:
--------------
You will have to execute »`mvn test`« manually from the command line or by right
clicking on your project's root choosing »`Run As`« - - > »`Maven test`«. This will
trigger the metamodel generating process resolving a compile time error in
class »`SearchByIcao`«.
\ No newline at end of file
......@@ -19,8 +19,8 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>5.1.0.Final</version>
<artifactId>hibernate-core</artifactId>
<version>5.2.5.Final</version>
</dependency>
<dependency>
......@@ -39,11 +39,11 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.6</version>
<version>2.7</version>
</dependency>
<!-- Required for executable jar generation to avoid ClassNotFoundException: com.fasterxml.jackson.core.type.TypeReference
and similar dependency problems. -->
<!-- Required for executable jar generation to avoid ClassNotFoundException:
com.fasterxml.jackson.core.type.TypeReference and similar dependency problems. -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
......@@ -58,17 +58,68 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<version>3.6.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>process</id>
<goals>
<goal>process</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<outputDirectory>${project.build.directory}/metamodel</outputDirectory>
<processors>
<processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
</processors>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jpamodelgen</artifactId>
<version>5.2.5.Final</version>
</dependency>
</dependencies>
</plugin>
<!-- Build helper plugin to add generated sources to classpath -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.12</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/metamodel</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<version>2.10.4</version>
<configuration />
</plugin>
......
#set( $symbol_pound = '#' )
#set( $symbol_dollar = '$' )
#set( $symbol_escape = '\' )
package ${package};
import java.util.List;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Persistence;
import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.CriteriaQuery;
import javax.persistence.criteria.Root;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import ${package}.model.Airline;
import ${package}.model.Airline_;
public class SearchByIcao {
static final Logger log = LogManager.getLogger(SearchByIcao.class);
// This refers to a corresponding entry <persistence-unit name="entitytemplatePU_nocreate">
// in META-INF/persistence.xml
static public final String PERSISTENCE_UNIT_NAME = "entitytemplatePU_nocreate";
/**
* @param args Unused
*/
public static void main( String[] args ) {
final EntityManagerFactory factory = Persistence.createEntityManagerFactory(PERSISTENCE_UNIT_NAME);
final EntityManager em = factory.createEntityManager();
final CriteriaBuilder builder = factory.getCriteriaBuilder();
log.info("Read airlines by icao code");
em.getTransaction().begin();
final CriteriaQuery<Airline> criteria = builder.createQuery( Airline.class );
final Root<Airline> airlineRoot = criteria.from( Airline.class );
criteria.select( airlineRoot );
// The subsequent line of code requires "mvn test" or equivalent triggering the metamodel generator
// when working in Eclipse. You may want to right click on your project root choosing
//
// "Run As" --> "Maven test".
//
// This step is being required whenever changes to your model classes in mi.intro.jpastart.model happen.
criteria.where(builder.equal( airlineRoot.get( Airline_.icaoCode), "DLH" ));
final List<Airline> airlines = em.createQuery( criteria ).getResultList();
for ( Airline person : airlines ) {
System.out.println(person);
}
em.getTransaction().commit();
log.info("Read completed");
em.close();
factory.close();
}
}
\ No newline at end of file
......@@ -30,4 +30,8 @@ public class Airline {
public String getIcaoCode() {
return icaoCode;
}
@Override
public String toString() {
return name + " (" + icaoCode + ")";
}
}
......@@ -67,4 +67,31 @@
</properties>
</persistence-unit>
<!-- The subsequent persistence unit won't modify the database's schema
javax.persistence.schema-generation.database.action=none
-->
<persistence-unit name="entitytemplatePU_nocreate">
<exclude-unlisted-classes>false</exclude-unlisted-classes>
<properties>
<property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver"/>
<property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/hdm?useSSL=false"/>
<property name="javax.persistence.jdbc.user" value="hdmuser"/>
<property name="javax.persistence.jdbc.password" value="XYZ"/>
<property
name="javax.persistence.schema-generation.database.action"
value="none"/>
<property name="hibernate.format_sql" value="true"/>
<property name="hibernate.use_sql_comments" value="true"/>
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5InnoDBDialect" />
<property name="hibernate.archive.autodetection" value="class"/>
</properties>
</persistence-unit>
</persistence>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment