I'd like to use @Embeddable annotation. So, it suggest to define as
Application Identity. I created as the Data Nucleus Documentation. But
it still error. Here is the Category.java
import java.util.List;
import javax.persistence.CascadeType;
import javax.persistence.Embeddable;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.OneToMany;
@Entity
@Embeddable
public class Category{
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
private String id;
private String name;
@OneToMany(mappedBy="category",cascade=CascadeType.ALL)
private List<Product> products;
public List<Product> getProducts() {
return products;
}
public void setProducts(List<Product> products) {
this.products = products;
}
public Category() {
}
public Category(String id,String name){
this.id=id;
this.name=name;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
Error is
Errors were encountered when initialising the specified MetaData.
See the nested exceptions for details SEVERE: Class entity.Category
has been specified with 1 primary key fields, but this class is using
nondurable identity and should be application identity.
Thanks
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.