Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Google App Engine 中,GQL(一种类似 SQL 的查询机制 foe 数据存储)仅适用于 Python 项目,不适用于 Java 项目。为什么会这样?
还有它无论如何要克服这个并在java项目中使用GQL吗?
GQL 不在 Java 实现中,作为替代,您将使用该Query对象来构建数据存储查询。
Query
如果您正在寻找 Java 的 GQL 实现,gql4j 就足够了。我在一个小数据集上对其进行了测试以确保它有效,但我没有在其他项目中使用它。
http://code.google.com/p/gql4j/