entity with relationships through GWT RPC problem

前端 未结 2 1584
情话喂你
情话喂你 2021-01-15 06:33

I am using JPA 2.0. (EclipseLink 2.0.2)

If an entity contains relations, for example:

@OneToMany(cascade = CascadeType.ALL, mappedBy = \"userId\")
p         


        
2条回答
  •  余生分开走
    2021-01-15 06:59

    This error message most likely means that your "Blog" object does not implement java.util.Serializable or com.google.gwt.user.client.rpc.IsSerializable.

    RPC and Serializable Discussion

提交回复
热议问题