我试过阅读QueryDSL文档,但我仍然很困惑。我习惯于编写大量的SQL,但这是我第一次使用带有JPQL(JPA2)的QueryDSL。
我有以下实体:
@Entity
public class Provider implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "id")
private Long id;
@Version
@Column(name = "version")
private Integer version;
private String name;
@ManyToMany(cascade=CascadeType.ALL)
@JoinTable(name = "provider_contact", joinColumns = @JoinColumn(name = "contact_id", referencedColumnName = "id"), inverseJoinColumns = @JoinColumn(name = "provider_id", referencedColumnName = "id"))
@OrderColumn
private Collection<Contact> contact;
}
其中Contact是一个简单的实体,pk为id
。
@Entity
public class Contact {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "id")
private Long id;
/**
* User first name
*/
@NotNull
private String firstName;
/**
* User last name
*/
@NotNull
private String lastName;
}
我正在尝试编写一个查询,该查询返回给定特定Contact.id和Provider.id的Contact
对象。如果Contact对象不是Provider的Contact集合的一部分,我正在寻找一个空值。
我尝试了以下内容:
public Contact getContact( long providerId, long contactId ){
Predicate p = QProvider.provider.id.eq(providerId).and(QContact.contact.id.eq(contactId));
JPQLQuery query = new JPAQuery(em);
return query.from(QProvider.provider).innerJoin(QProvider.provider.contact).where(p).singleResult(QContact.contact);
}
但我收到以下错误:
Caused by: java.lang.IllegalArgumentException: Undeclared path 'contact'. Add this path as a source to the query to be able to reference it.
at com.mysema.query.types.ValidatingVisitor.visit(ValidatingVisitor.java:78)
at com.mysema.query.types.ValidatingVisitor.visit(ValidatingVisitor.java:30)
at com.mysema.query.types.PathImpl.accept(PathImpl.java:94)
我认为它与我的谓词引用QContact.contact方向并且不是QProvider.provider.contact对象的一部分这一事实有关,但我真的不知道如何弄清楚这应该如何完成。
我是否走在正确的轨道上?我甚至不确定我的加入是否正确。
答案 0 :(得分:15)
这应该有效
public Contact getContact(long providerId, long contactId) {
QProvider provider = QProvider.provider;
QContact contact = QContact.contact;
return new JPAQuery(em).from(provider)
.innerJoin(provider.contact, contact)
.where(provider.id.eq(providerId), contact.id.eq(contactId))
.singleResult(contact);
}