我一直在努力获得在GAE上运行的应用程序,以支持其他平台,例如Jetty Server的单个实例。

一个持久性JDO类,其主键定义如下:

@PersistenceCapable(identityType = IdentityType.APPLICATION, detachable = "false")
@Inheritance(strategy = InheritanceStrategy.SUBCLASS_TABLE)
public abstract class Foo implements Bar {


    @PrimaryKey
    @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
    protected Key key;


密钥是com.google.appengine.api.datastore.Key;

如果不进行数据迁移,是否有可能以某种方式将此字段转换为Long或其他平台(例如mySQL)支持的东西,而无需使用应用引擎库?

最佳答案

好的,看起来有可能将其转换为字符串,我很好。

@PersistenceCapable(identityType = IdentityType.APPLICATION, detachable = "false")
@Inheritance(strategy = InheritanceStrategy.SUBCLASS_TABLE)
public abstract class EntityStore implements Entity {


    @PrimaryKey
    @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
    protected String key;

07-26 02:45