I\'ve got a problem with @MapsId
annotation and @EmbeddedId
. When running a code in Hibernate I get:
Caused by: org.hibernate.Pr
See this issue. It simply states that
org.hibernate.PropertyAccessException may be thrown if an Entity contains the following conditions:
- Uses @EmbeddedId
- Uses @JoinTable on a collection or association property/field, which references another property/field of the entity.
As you see, the only 'workaround' suggested so far is Do not use @EmbeddedId
, which is kind of weird.
its an old but might be useful for some one
try to
@Entity
public class Employee implements Serializable {
@EmbeddedId
private EmployeeId id;
private String firstName;
@ManyToOne
@MapsId("id")
@JoinColumn(name ="serverId")
private Server server;
@OneToOne
@MapsId("id")
@JoinColumn(name= "websiteId")
private Website website;
I had the same problem and fixed it by doing the following, when Hibernate attempts to set the values for Employee.id, employee.id is null, just instantiate employee.id and you'll be set.
@Entity
public class Employee implements Serializable {
@EmbeddedId
private EmployeeId id = new EmployeeId();
private String firstName;
@ManyToOne
@MapsId("serverId")
private Server server;
@OneToOne
@MapsId("websiteId")
private Website website;
public Employee() {}
public Employee(String firstName, Server server, Website website) {
this.firstName = firstName;
this.server = server;
this.website = website;
}
}
Solution Here: Got the same problem, and got it working now.
For it to work, the EmployeeId
of your Employee class should be instantiated either in the constructor of Employee, or in the SessionBean before making the persistence.
Otherwise, it tries to populates the values of your embeddedid with it being null.
Not sure if this is normal or if it's a bad implementation of JPA specifications. I think the latter since the constructor for your PK is defined and hibernate should be able to call it by itself.