我正在开发一个 Spring Web 应用程序,其持久层包含在 Spring Roo 生成的 JPA 实体中,Hibernate 作为持久性提供者,MySql 作为底层数据库。
在我的实体中,我有一个类,其中包含在 Roo 中生成Detection
的 tstampjava.util.Date
字段,如下所示:
entity jpa --class ~.data.Detection
...
field date --fieldName tstamp --type java.util.Date
...
finder add findDetectionsByTstampBetween
(执行后当然选择了finder方法finder list
)
在我的控制器代码中,有时我会调用:
List<Detection> detections = Detection.findDetectionsByTstampBetween(from, to).getResultList();
其中 from 和 to 是两个有效的java.util.Date(s
)。但是,在测试样本数据时(在确保给定的 from,to 返回列表不应该为空之后),我得到了一个空列表并调查了原因。
我在 tomcat 日志中发现 Hibernate 正在生成以下 SQL:
Hibernate: select detection0_.id as id1_3_, ...etc..., detection0_.tstamp as tstamp4_3_ from detection detection0_ where detection0_.tstamp>=?
我希望 where 子句应该包含一个尾随“ AND detection0_.tstamp<=?
”,检查其他日期范围限制。我查看了生成的Detection.findDetectionsByTstampBetween(Date minTstamp, Date maxTstamp)
方法Detection_Roo_Finder.aj
,实际上“AND”存在于对 createQuery 的调用中。
public static TypedQuery<Detection> Detection.findDetectionsByTstampBetween(Date minTstamp, Date maxTstamp) {
if (minTstamp == null) throw new IllegalArgumentException("The minTstamp argument is required");
if (maxTstamp == null) throw new IllegalArgumentException("The maxTstamp argument is required");
EntityManager em = Detection.entityManager();
TypedQuery<Detection> q = em.createQuery("SELECT o FROM Detection AS o WHERE o.tstamp BETWEEN :minTstamp AND :maxTstamp", Detection.class);
q.setParameter("minTstamp", minTstamp);
q.setParameter("maxTstamp", maxTstamp);
return q;
}
知道什么可能导致问题吗?