0
オブジェクト化モデルエンティティでauto値を使用したいと思います。 Objectifyは@Idアノテーションにフィールド値を必要としますが、Google AutoValueではすべてのフィールドを抽象メソッドに変換する必要があるため、抽象メソッドに@Idを適用することはできません。あなたの提案は何ですか?Objectify with Google AutoValue
@Entity
@Cache
@AutoValue
public abstract class AccountDetail {
// Objectify needs this
@Id
private long id;
// auto value needs this
abstract long id();
}