gpt4 book ai didi

java - 如何将表单数据上传到谷歌应用引擎

转载 作者:行者123 更新时间:2023-12-01 15:00:24 26 4
gpt4 key购买 nike

要将数据上传到数据存储,我使用以下 java 代码:

DatastoreService ds = DatastoreServiceFactory.getDatastoreService();
Entity entity = new Entity("mydetail");
entity.setProperty("entry", "entry");
ds.put(entity);

对于上传基于表单的数据,这是上传数据的正确方法吗?即使用上面类似的代码还是我应该使用其他 API?

最佳答案

是的,这是 AppEngine 数据存储区的直接 API。

您还可以使用 JDO 接口(interface),它允许直接存储 Java 对象,而无需处理数据存储 API:

import javax.jdo.annotations.Persistent;

@PersistenceCapable
public class MyDetail {
// ...
@Persistent
private String entry;
// ...

还有JPA接口(interface)。 App Engine 中描述了这两个接口(interface)。网站。

Objectify界面非常简单,并且在许多情况下更容易。它不是官方 SDK 的一部分。

您可以使用对您的应用程序更有意义的选项。

关于java - 如何将表单数据上传到谷歌应用引擎,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13734027/

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