为了账号安全,请及时绑定邮箱和手机立即绑定

复合查询的实现

如果要复合查询怎么实现呢?比如说有两个条件的查询

正在回答

1 回答

一:在dao中Query注解 通过sql语句

public interface TaskDao extends JpaRepository<Task, Long> {   @Query("select t from Task t where t.taskName = ? and t.createTime = ?")  Task findByTaskName(String taskName, Date createTime); }

二:在dao中新增方法或者重写jparepository里面的方法 

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
2小时学会Spring Boot
  • 参与学习       151599    人
  • 解答问题       1079    个

Spring Boot入门视频教程,你将学会使用Spring Boot快速构建应用程序

进入课程

复合查询的实现

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信