我正在尝试按照使用 Google App Engine 的地理空间查询中的描述构建 JPA 查询
Query query = em.createQuery("SELECT id, ( 6371 * acos( cos( radians(:lat_t/1E6)) ) * cos( radians( x.m_Latitude/1E6) ) ) * cos( radians( x.m_Longitude/1E6) ) - radians(:lng_t/1E6)) ) + sin( radians(:lat_t/1E6)) ) * sin( radians( x.m_Latitude/1E6) ) ) ) ) AS distance " +
"FROM ProfileEntity x" +
"HAVING distance < 10", ProfileEntity.class);
但我得到:
Cannot find type of (part of) x.m_Latitude since symbol has no type; implicit variable?
org.datanucleus.exceptions.NucleusUserException: Cannot find type of (part of) x.m_Latitude since symbol has no type; implicit variable?
我想我没有正确访问作为 ProfileEntity 中的字段的 m_Latitude。
我该怎么做?
我也不确定什么是“id”perpeas,有什么想法吗?