我正在使用Spring Data Rest JPA,它根据方法名称在内部实现Query。
我在我的存储库界面中编写了以下方法,该方法应列出状态中的所有用户,如果存在名称和/或年龄,则应过滤结果。
StateId是必填项,但名称和年龄是可选的过滤器参数
public List<User> findByStateIdAndNameOrAge(Integer stateId, String name , Integer age, Pageable pageable);
我没有得到任何结果。我在哪里做错了?
答案 0 :(得分:1)
你可以尝试
你的方法定义没有错误。
public List<User> findByStateIdAndNameOrAge(Integer stateId, String name , Integer age, Pageable pageable);
但是您无法将null参数传递给此方法,因此如果您将任何参数设为空白,它将无效。