Country.java
String state;
String city;
字符串
我们想查询所有包含某个关键字(select * from countries where state=<state> and city like %Ch%
)的条目
Page<List<Country>> findByStateAndCityContainingIgnoreCase(String state, String city, Pageable pageable);
型
上面的查询不是从数据库中获取结果,我们期望JPA构造正确的查询,但我们总是得到空结果
1条答案
按热度按时间ttcibm8c1#
Page
里面有一个元素列表。你可以通过getContent()
方法访问它。所以返回Page
而不是Page<List>
。字符串