I have database with next structure:
CREATE TABLE entity (
id SERIAL,
name VARCHAR(255),
PRIMARY KEY (id)
);
CREATE TABLE entity_property (
entity_id SERIAL,
name VARCHAR(255),
value TEXT
);
When I try to create EntityProperty class
@Entity
@Table(name="entity_property")
public class EntityProperty {
private String name;
private String value;
@Column(name="name")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Column(name="value", nullable=true, length=255)
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
I got exception:
org.hibernate.AnnotationException: No identifier specified for entity: package.EntityProperty
I know that JPA entities must have primary key but I can't change database structure due to reasons beyond my control. Is it possible to create JPA (Hibernate) entities that will be work with database structure like this?