如何将字段成员保留在另一个模式中?

时间:2012-06-29 21:19:47

标签: mysql mapping jdo datanucleus

假设以下(我正在使用MySQL)

@PersistenceCapable(identityType = IdentityType.APPLICATION, detachable = "true")
public class TclRequest2 {
    @PrimaryKey
    @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
    private long id;

    @Persistent(column = "userid")
    @Column(jdbcType = "INTEGER", length = 11, allowsNull = "false", defaultValue = "1")
    private Member member; // This object table is in another schema
    // Getters and setters
}

字段member保留在另一个架构中。我可以通过在Member类的@PersitentCapable注释中指定“catalog”属性来解决这个问题,但这会破坏我在使用的属性文件中指定模式名称的灵活性,因为我正在配置jdo在属性文件中。

谢谢。

0 个答案:

没有答案