これは非常に一般的な質問であるため、この回答に基づいてこの記事を書きました。
私たちのアプリケーションは、以下の使用を前提としましょうPost
、PostComment
、PostDetails
、およびTag
1対多を形成するエンティティ、1対1、および多対多のテーブルのリレーションを:
JPA基準メタモデルを生成する方法
hibernate-jpamodelgen
HibernateはORMが提供するツールは、プロジェクトのエンティティをスキャンし、JPA基準メタモデルを生成するために使用することができます。Maven 構成ファイルのに以下annotationProcessorPath
を追加するだけです。maven-compiler-plugin
pom.xml
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jpamodelgen</artifactId>
<version>${hibernate.version}</version>
</annotationProcessorPath>
</annotationProcessorPaths>
</configuration>
</plugin>
これで、プロジェクトがコンパイルされると、target
フォルダー内に次のJavaクラスが生成されていることがわかります。
> tree target/generated-sources/
target/generated-sources/
└── annotations
└── com
└── vladmihalcea
└── book
└── hpjp
└── hibernate
├── forum
│ ├── PostComment_.java
│ ├── PostDetails_.java
│ ├── Post_.java
│ └── Tag_.java
タグエンティティメタモデル
場合はTag
、次のようにエンティティがマップされます。
@Entity
@Table(name = "tag")
public class Tag {
@Id
private Long id;
private String name;
//Getters and setters omitted for brevity
}
Tag_
メタモデルクラスは、このように生成されます。
@Generated(value = "org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor")
@StaticMetamodel(Tag.class)
public abstract class Tag_ {
public static volatile SingularAttribute<Tag, String> name;
public static volatile SingularAttribute<Tag, Long> id;
public static final String NAME = "name";
public static final String ID = "id";
}
SingularAttribute
基本的に使用されるid
とname
Tag
JPAエンティティ属性。
エンティティメタモデルの投稿
Post
エンティティは次のようにマッピングされます。
@Entity
@Table(name = "post")
public class Post {
@Id
private Long id;
private String title;
@OneToMany(
mappedBy = "post",
cascade = CascadeType.ALL,
orphanRemoval = true
)
private List<PostComment> comments = new ArrayList<>();
@OneToOne(
mappedBy = "post",
cascade = CascadeType.ALL,
fetch = FetchType.LAZY
)
@LazyToOne(LazyToOneOption.NO_PROXY)
private PostDetails details;
@ManyToMany
@JoinTable(
name = "post_tag",
joinColumns = @JoinColumn(name = "post_id"),
inverseJoinColumns = @JoinColumn(name = "tag_id")
)
private List<Tag> tags = new ArrayList<>();
//Getters and setters omitted for brevity
}
Post
エンティティは、2つの基本的な属性を持ち、id
かつtitle
、1対多のcomments
コレクション、1対1 details
の関連、および多対多tags
のコレクションを。
Post_
次のようにメタモデルクラスが生成されます。
@Generated(value = "org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor")
@StaticMetamodel(Post.class)
public abstract class Post_ {
public static volatile ListAttribute<Post, PostComment> comments;
public static volatile SingularAttribute<Post, PostDetails> details;
public static volatile SingularAttribute<Post, Long> id;
public static volatile SingularAttribute<Post, String> title;
public static volatile ListAttribute<Post, Tag> tags;
public static final String COMMENTS = "comments";
public static final String DETAILS = "details";
public static final String ID = "id";
public static final String TITLE = "title";
public static final String TAGS = "tags";
}
基本id
とtitle
属性、および1対1のdetails
関連付けはaで表されSingularAttribute
、comments
およびtags
コレクションはJPAで表されListAttribute
ます。
PostDetailsエンティティメタモデル
PostDetails
エンティティは次のようにマッピングされます。
@Entity
@Table(name = "post_details")
public class PostDetails {
@Id
@GeneratedValue
private Long id;
@Column(name = "created_on")
private Date createdOn;
@Column(name = "created_by")
private String createdBy;
@OneToOne(fetch = FetchType.LAZY)
@MapsId
@JoinColumn(name = "id")
private Post post;
//Getters and setters omitted for brevity
}
すべてのエンティティー属性はSingularAttribute
、関連するPostDetails_
MetamodelクラスのJPAによって表されます。
@Generated(value = "org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor")
@StaticMetamodel(PostDetails.class)
public abstract class PostDetails_ {
public static volatile SingularAttribute<PostDetails, Post> post;
public static volatile SingularAttribute<PostDetails, String> createdBy;
public static volatile SingularAttribute<PostDetails, Long> id;
public static volatile SingularAttribute<PostDetails, Date> createdOn;
public static final String POST = "post";
public static final String CREATED_BY = "createdBy";
public static final String ID = "id";
public static final String CREATED_ON = "createdOn";
}
PostCommentエンティティメタモデル
PostComment
次のようにマップされます。
@Entity
@Table(name = "post_comment")
public class PostComment {
@Id
private Long id;
@ManyToOne(fetch = FetchType.LAZY)
private Post post;
private String review;
//Getters and setters omitted for brevity
}
また、すべてのエンティティー属性はSingularAttribute
、関連するPostComments_
MetamodelクラスのJPAによって表されます。
@Generated(value = "org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor")
@StaticMetamodel(PostComment.class)
public abstract class PostComment_ {
public static volatile SingularAttribute<PostComment, Post> post;
public static volatile SingularAttribute<PostComment, String> review;
public static volatile SingularAttribute<PostComment, Long> id;
public static final String POST = "post";
public static final String REVIEW = "review";
public static final String ID = "id";
}
JPA基準メタモデルの使用
JPAメタモデルがない場合、PostComment
関連するPost
タイトルでフィルタリングされたエンティティをフェッチする必要があるCriteria APIクエリは次のようになります。
CriteriaBuilder builder = entityManager.getCriteriaBuilder();
CriteriaQuery<PostComment> query = builder.createQuery(PostComment.class);
Root<PostComment> postComment = query.from(PostComment.class);
Join<PostComment, Post> post = postComment.join("post");
query.where(
builder.equal(
post.get("title"),
"High-Performance Java Persistence"
)
);
List<PostComment> comments = entityManager
.createQuery(query)
.getResultList();
インスタンスをpost
作成するときに文字列リテラルJoin
を使用し、をtitle
参照するときに文字列リテラルを使用したことに注意してくださいPost
title
。
JPAメタモデルを使用すると、次の例に示すように、エンティティ属性のハードコーディングを回避できます。
CriteriaBuilder builder = entityManager.getCriteriaBuilder();
CriteriaQuery<PostComment> query = builder.createQuery(PostComment.class);
Root<PostComment> postComment = query.from(PostComment.class);
Join<PostComment, Post> post = postComment.join(PostComment_.post);
query.where(
builder.equal(
post.get(Post_.title),
"High-Performance Java Persistence"
)
);
List<PostComment> comments = entityManager
.createQuery(query)
.getResultList();
Codotaのようなコード補完ツールを使用している場合、JPA基準APIクエリの記述ははるかに簡単です。チェックアウトこの記事を Codota IDEプラグインの詳細については。
または、フィルター処理中にDTOプロジェクションをフェッチするPost
title
とします。PostDetails
createdOn
属性ます。
結合属性を作成するとき、およびDTOプロジェクション列のエイリアスを構築するとき、またはフィルタリングする必要があるエンティティ属性を参照するときに、メタモデルを使用できます。
CriteriaBuilder builder = entityManager.getCriteriaBuilder();
CriteriaQuery<Object[]> query = builder.createQuery(Object[].class);
Root<PostComment> postComment = query.from(PostComment.class);
Join<PostComment, Post> post = postComment.join(PostComment_.post);
query.multiselect(
postComment.get(PostComment_.id).alias(PostComment_.ID),
postComment.get(PostComment_.review).alias(PostComment_.REVIEW),
post.get(Post_.title).alias(Post_.TITLE)
);
query.where(
builder.and(
builder.like(
post.get(Post_.title),
"%Java Persistence%"
),
builder.equal(
post.get(Post_.details).get(PostDetails_.CREATED_BY),
"Vlad Mihalcea"
)
)
);
List<PostCommentSummary> comments = entityManager
.createQuery(query)
.unwrap(Query.class)
.setResultTransformer(Transformers.aliasToBean(PostCommentSummary.class))
.getResultList();
かっこいいですよね?