你好!家人,我以前有过一些东西,现在我在本地查询中使用当前日期,但执行后我什么都没有
@Query(value="select * from operation where date_operation = CURRENT_DATE()", nativeQuery =true)
public Page<Operation> listByPageAndByMC(Pageable page);
运行后,在 hibernate journalise 中有这个: Hibernate: select * from operation where date_operation = CURRENT_DATE() limit ?, ? 休眠:从 date_operation = CURRENT_DATE() 的操作中选择 count(*)
这是我的控制器
@RequestMapping(value="operations")
public String peration(Model model) {
Page<Operation> ops = operationDao.listPageOp(1, 10);
model.addAttribute("operation", ops);
返回“操作/操作日”;
}