我正在使用Google App Engine,包括Java,托管VM和maven-gcloud-plugin。
当我在本地运行我的应用程序时(mvn gcloud:run)当我写入数据存储区(通过Objectify)时,我得到随机异常:
The remote RPC to the application server failed for the call datastore_v3.Put()
我的代码没有做那么多
public class TestDAOImpl implements TestDAO {
@Override
public void save(Test test) {
ofy().save().entity(test).now();
}
}
在实际的App Engine实例上,一切似乎都运行正常......
有谁知道为什么会发生这种情况以及如何预防?
由于