我尝试使用QueryDsl编写带有多态where子句的查询。
由于我很难解释我想要抽象的内容,我cloned the spring-boot-sample-data-jpa project并对其进行了修改,以显示我尝试做的事情。
我有these model classes,您需要注意SpaHotel
和SportHotel
扩展Hotel
实体。
我试图编写一个返回所有城市的查询,这些城市包含主要运动属于给定类型的SpaHotel
或SportHotel
。
我写了一个JPQL version of that query,这有点难看(我不喜欢sport is null
部分来表示它是一个温泉酒店),但似乎又回归了我想。
但the QueryDsl version of that query似乎不起作用:
public List<City> findAllCitiesWithSpaOrSportHotelQueryDsl(SportType sportType) {
QCity city = QCity.city;
QHotel hotel = QHotel.hotel;
return queryFactory.from(city)
.join(city.hotels, hotel)
.where(
hotel.instanceOf(SpaHotel.class).or(
hotel.as(QSportHotel.class).mainSport.type.eq(sportType)
)
).list(city);
}
我的test失败了:
test_findAllCitiesWithSpaOrSportHotelQueryDsl(sample.data.jpa.service.CityRepositoryIntegrationTests) Time elapsed: 0.082 sec <<< FAILURE!
java.lang.AssertionError:
Expected: iterable over [<Montreal,Canada>, <Aspen,United States>, <'Neuchatel','Switzerland'>] in any order
but: No item matches: <Montreal,Canada> in [<Aspen,United States>, <'Neuchatel','Switzerland'>]
at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:20)
at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:8)
at sample.data.jpa.service.CityRepositoryIntegrationTests.test_findAllCitiesWithSpaOrSportHotelQueryDsl(CityRepositoryIntegrationTests.java:95)
似乎我的查询没有返回&#34;蒙特利尔&#34;,应该退回,因为它包含一个SpaHotel。
此外,我想知道QueryDsl将我的查询转换为交叉联接是否正常:
select city0_.id as id1_0_, city0_.country as country2_0_, city0_.name as name3_0_
from city city0_
inner join hotel hotels1_
on city0_.id=hotels1_.city_id
cross join sport sport2_
where hotels1_.main_sport_id=sport2_.id and (hotels1_.type=? or sport2_.type=?)
我的问题:
答案 0 :(得分:3)
正确转换JPQL查询
String jpql = "select c from City c"
+ " join c.hotels hotel"
+ " left join hotel.mainSport sport"
+ " where (sport is null or sport.type = :sportType)";
是
return queryFactory.from(city)
.join(city.hotels, hotel)
.leftJoin(hotel.as(QSportHotel.class).mainSport, sport)
.where(sport.isNull().or(sport.type.eq(sportType)))
.list(city);
在原始查询中使用此属性
hotel.as(QSportHotel.class).mainSport
导致交叉连接并将查询限制为SportHotels。
Querydsl仅对仅在查询的orderBy部分中使用的路径使用隐式左连接,所有内容都将导致隐式内部连接。