gpt4 book ai didi

android - 生成的云端点缺少 Endpoint.Builder

转载 作者:行者123 更新时间:2023-11-29 15:22:47 24 4
gpt4 key购买 nike

我正在尝试按照 https://developers.google.com/eclipse/docs/endpoints-addentities 上的示例教程进行操作我一直在弄清楚如何让 GameEndpoint.Builder 类在 Eclipse 中生成。

按照此操作并按照描述生成云端点后,我创建了一个 GameEndpoint 类,但没有 GameEndpoint.Builder 类。很明显我有这个错误

GameEndpoint.Builder cannot be resolved to a type

此时我很困惑。我如何在 Eclipse 中生成 GameEndpoint.Builder 类,或者什么会阻止它?

代码

public class NewGameTask extends AsyncTask<Context, Integer, Long> {
protected Long doInBackground(Context... contexts) {

GameEndpoint.Builder endpointBuilder = new GameEndpoint.Builder(
AndroidHttp.newCompatibleTransport(), new JacksonFactory(),
new HttpRequestInitializer() {
public void initialize(HttpRequest httpRequest) {
}
});
GameEndpoint endpoint = CloudEndpointUtils.updateBuilder(
endpointBuilder).build();
try {
Game game = new Game();
game.setStart(Calendar.getInstance());

Game result = endpoint.insertGame(game);
} catch (IOException e) {
e.printStackTrace();
}
return (long) 0;
}
}

最佳答案

在观看来自 Google I/O 2013 的视频后,我发现了我的问题它使用的是 Android Studio,但它主要与 Eclipse 相同。

我在关注 https://developers.google.com/eclipse/docs/endpoints-addentities 时犯了错误是您需要将您的实体类放入 MyApp-AppEngine 项目而不是您的 MyApp 项目。

这就是困惑的根源。如果它对将来的人有帮助,这里是我所做工作的简短分割。

  • 将要添加到 App Engine 的 Entity 类放入您的 MyApp-AppEngine 项目中。
  • 右键单击您的类(class)并转到 Google> 生成云端点客户端库
  • 右键单击您的 MyApp-AppEngine 项目并转到 Google> 生成 Cloud Enpoint 客户端库
  • 将在您的 MyApp 项目中创建新引用,您在项目中引用这些引用以供使用。

关于android - 生成的云端点缺少 Endpoint.Builder,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16726745/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com