0
objectify 모델 엔티티에서 자동 값을 사용하고 싶습니다. Objectify는 필드 값을 사용하여 @ 주석을 사용해야하지만 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();
}