我正在尝试使用Google Datastore数据库作为我的后端数据库,并使用Google的this教程中的地理空间查询进行查询,但所有查询都不会返回任何内容。我用Java创建了下一个演示调试servlet:
private static final String tableName = "DEBUG";
private static final double radius = 100 * 1000; //100 km
private static final String NameKey = "Name";
private static final String LocationKey = "location";
//Parameters from the http servlet request
String name;
float lat, lng;
//Insert a new person to the DB
Entity person = new Entity(tableName);
person.setProperty(NameKey, name);
GeoPt location = new GeoPt(lat, lng);
person.setProperty(LocationKey, location);
datastore.put(person);
//returns the users in the radius
Query.Filter filter = new Query.StContainsFilter(LocationKey, new Query.GeoRegion.Circle(location, radius));
Query query = new Query(tableName).setFilter(filter);
PreparedQuery pq = datastore.prepare(query);
JsonArray users = new JsonArray();
for (Entity entity : pq.asIterable()){
users.add(new JsonObject()
.add(NameKey, (String)entity.getProperty(NameKey))
.add(LocationKey, ((GeoPt)entity.getProperty(LocationKey)).toString()));
}
result.add("Users", users);
数据库的插入工作正常,以下是Google控制台的屏幕截图:
但查询总是失败,并抛出:
javax.servlet.ServletContext log: DebugGeoPtServlet: Returns: {Error=no matching index found.
The suggested index for this query is:
<datastore-index kind="DEBUG" source="manual">
<property name="location" mode="geospatial"/>
</datastore-index>
}
我不知道代码中有什么问题。我在教程中复制它,我插入的点非常接近(不,甚至接近100公里半径)
答案 0 :(得分:1)
您需要将此索引定义添加到datastore-indexes.xml
文件(位于/WEB_INF
文件夹中)。它看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<datastore-indexes
autoGenerate="true">
<datastore-index kind="DEBUG" source="manual">
<property name="location" mode="geospatial"/>
</datastore-index>
</datastore-indexes>
通常,当您在开发服务器中尝试不同的查询时,它会自动创建必要的索引定义。但是,有时您可能需要手动添加它们。