在我当前的项目中,我使用休眠 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] 不匹配]
但是由于精度损失,这个值不能转换为整数。
有什么建议么?