在我目前的项目中,我使用hibernate JPA作为持久性库。在为查询设置参数时,我遇到了奇怪的错误。
我有以下内容:
List<Location> loca = JPA.em().createQuery(
"SELECT location FROM Location as location"
+ " where "
+ "( 6371 * acos(cos(PI() / 180 * :platitude ) * cos(PI() / 180 *location.latitude ) * "
+ "cos(PI() / 180 *location.longitude - PI() / 180 *:plongitude ) + sin( PI() / 180 *:platitude) * "
+ "sin(PI() / 180 *location.latitude ) ) ) < :radius")
.setParameter("radius", 10000.0)
.setParameter("platitude", new Double(latitude))
.setParameter("plongitude", new Double(longitude))
.getResultList();
结果错误是:
[IllegalArgumentException:参数值[43.239474]不匹配类型[java.lang.Integer]]
但由于精度损失,此值无法转换为整数。
有什么建议吗?
答案 0 :(得分:1)
如果您在JPA下使用Hibernate,则可以直接使用Hibernate会话来解决此问题。我有同样的问题,找不到另一种方式。
以下内容应该有效:
Session session = (Session) JPA.em().getDelegate();
List<Location> loca = session.createQuery(
"SELECT location FROM Location as location"
+ " where "
+ "( 6371 * acos(cos(PI() / 180 * :platitude ) * cos(PI() / 180 *location.latitude ) * "
+ "cos(PI() / 180 *location.longitude - PI() / 180 *:plongitude ) + sin( PI() / 180 *:platitude) * "
+ "sin(PI() / 180 *location.latitude ) ) ) < :radius")
.setParameter("radius", 10000.0, new DoubleType())
.setParameter("platitude", new Double(latitude), new DoubleType())
.setParameter("plongitude", new Double(longitude), new DoubleType())
.list();