摘要:springframwwork.data.jpa -> JPAQuer
springframwwork.data.jpa -> JPAQuery / SimpleQuery
Querydsl是一个Java开源框架用于构建类型安全的SQL查询语句。它采用API代替拼凑字符串来构造查询语句。可跟 Hibernate 和 JPA 等框架结合使用。
基本查询:
JPAQuery query =
new
JPAQuery(entityManager);
List<Person> persons = query.from(person)
.where(
person.firstName.eq(
"John"
),
person.lastName.eq(
"Doe"
))
.list(person)
子查询:
List<Person> persons = query.from(person)
.where(person.children.size().eq(
new
JPASubQuery().from(parent)
.uniqueResult(parent.children.size().max())
)).list(person);
排序:
List<Person> persons = query.from(person)
.orderBy(person.lastName.asc(),
person.firstName.desc())
.list(person);