문제

When an app will store two kinds of Entity:

com.mycompany.kind.Model

and

com.mycompany.otherkind.Model

How will this be stored in the Datastore collection, in the same kind "Model"? Or not?

도움이 되었습니까?

해결책

You use the @Entity annotation to deconflict your kind names:

@Entity
public class Model { ... }


@Entity(name="OtherModel")
public class Model { ... }

This can be dangerous for obvious reasons. I would not recommend it.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top