Spring data jpa Specification查询关于日期的范围搜索
Posted Mr_伍先生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring data jpa Specification查询关于日期的范围搜索相关的知识,希望对你有一定的参考价值。
代码:
时间格式化类型:
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); SimpleDateFormat sdfmat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
try { if (StringUtils.isNotEmpty(startTime) && StringUtils.isNotEmpty(endTime)) { predicates.add(cb.between(root.get(“time”), sdfmat.parse(sdfmat.format(sdf.parse(startTime).getTime())), sdfmat.parse(sdfmat.format(sdf.parse(endTime).getTime() + 86400000)))); } } catch (Exception e) { }
以上是关于Spring data jpa Specification查询关于日期的范围搜索的主要内容,如果未能解决你的问题,请参考以下文章
spring-data详解之spring-data-jpa:简单三步快速上手spring-data-jpa开发