-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 
Author Message
 Post subject: entity-mapping for key-value attribute list?
PostPosted: Fri Feb 05, 2010 10:17 am 
Newbie

Joined: Thu Jul 16, 2009 5:23 pm
Posts: 11
Hello, I'm trying to determine if there is an annotation or mapping that I can apply to my objects in order to persist my entity. The entity contains a number of values that map easily to the database. However, the entity also contains a collection of key-value attributes that are stored in a list. The classes at listed below. The DB table looks something like this:

create table entity
(id int,
name varchar(50),
keyA varchar(50),
keyB varchar(50),
keyC varchar(50))

I would like to do something like this:
Entity e = new Entity();
e.setName("name");
e.setAttribute("keyA", "valueA");
e.setAttribute("keyB", "valueB");
e.setAttribute("keyC", "valueB");

entityManager.persist(e);

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.

Thanks for your help.

public class Entity
{
private int id;
private String name;
private List<Attribute> attributeList;

public int getId()
{
return id;
}

public void setId(int id)
{
this.id = id;
}

public String getName()
{
return name;
}

public void setName(String name)
{
this.name = name;
}

public void setAttribute(String key, String value)
{
if (attributeList == null)
{
attributeList = new ArrayList<Attribute>();
}
Attribute attr = new Attribute();
attr.setKey(key);
attr.setValue(value);
attributeList.add(attr);
}

}


public class Attribute
{
private String key;
private String value;

public String getKey()
{
return key;
}

public void setKey(String key)
{
this.key = key;
}

public String getValue()
{
return value;
}

public void setValue(String value)
{
this.value = value;
}

}


Top
 Profile  
 
 Post subject: Re: entity-mapping for key-value attribute list?
PostPosted: Fri Feb 05, 2010 12:04 pm 
Senior
Senior

Joined: Mon Jul 07, 2008 4:35 pm
Posts: 141
Location: Berlin
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

_________________
Have you tried turning it off and on again? [Roy]


Top
 Profile  
 
 Post subject: Re: entity-mapping for key-value attribute list?
PostPosted: Fri Feb 05, 2010 3:17 pm 
Newbie

Joined: Thu Jul 16, 2009 5:23 pm
Posts: 11
Thanks for your quick response. We've decided to remove the list as you suggested.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
cron
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.