我想将自动值与对象化模型实体一起使用。Objectify 需要带有字段值的 @Id 注释,但是在 Google AutoValue 中,所有字段都需要转换为抽象方法,因此我不能将 @Id 应用于抽象方法。你有什么建议?
@Entity
@Cache
@AutoValue
public abstract class AccountDetail {
// Objectify needs this
@Id
private long id;
// auto value needs this
abstract long id();
}