Person has a one to many relationship with RequestHistory. RequestHistory is
a list of permission requests sent for a person. The version I'm using is
OpenJPA 1.0.1. The relationships are as follows:

Person:
@javax.persistence.OneToMany(mappedBy="personId",fetch=javax.persistence.FetchType.EAGER)
        private List<ReqHistory> reqhistoryList;

ReqHistory
        @Column(name="PERSON_ID")
        @javax.persistence.ManyToOne
        @javax.persistence.JoinColumn(name="PERSON_ID") 
        private Person personId;


Pinaki Poddar wrote:
> 
> 1. Post the definition of Person and RequestHistory.
> 2. There was an intermittent version of OpenJPA build that had a bug on
> how mapping strategies are installed and often showed up as error similar
> to yours. Which build version of OpenJPA are you using?
>   Version information can be printed by:
>   $ java -jar /path/to/openjpa.jar 
>   or
>   $ java org.apache.openjpa.lib.conf.OpenJPAVersion
> 
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Can-someone-translate-this-error--tp14814893p14841220.html
Sent from the OpenJPA Users mailing list archive at Nabble.com.

Reply via email to