课程
/后端开发
/Java
/2小时学会Spring Boot
如果要复合查询怎么实现呢?比如说有两个条件的查询
2017-09-15
源自:2小时学会Spring Boot 5-2
正在回答
一:在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里面的方法
举报
Spring Boot入门视频教程,你将学会使用Spring Boot快速构建应用程序