Hi weeznat
weeznat wrote:
Is there an entity mapping that I can apply to my objects to persist the entity? I know that it would be easy to add an attribute table and have a one-to-many mapping, but this DB schema would not really allow efficient query on the 3 key values.
Adding an Attribute table is the first solution to think of. You should always use a
normalized DB schema. It is reliable and efficient.
Another option would be to get rid of the
List<Attribute> field. If you will always have precisely these three keys you could exchange the
List<Attribute> for three fields of type
Attribute. The Attribute entity would then have to be mapped as a
Component.
In both cases, you would still be able to use your
setAttribute(String key, String value) methods.
CU
Froestel