StackOverFlowError while doing a One-To-One relationship in GAE Datastore using JPA 2.0
问题 I have two tables Folder & VirtualSystemEntry I tried to follow this Dataneclous Turorial but it always results with StackOverFlowException here what I tried so far Folder.java @Entity public class Folder implements IsSerializable{ @Id @Column(name = "fvseID") @GeneratedValue(strategy = GenerationType.IDENTITY) @Extension(vendorName = "datanucleus", key = "gae.encoded-pk", value = "true") private String fvseID; @OneToOne @JoinColumn(name="vseID") private VirtualSystemEntry vse=new