I have a xml file and within which i have some key value pairs.I want to store them in form of key value pairs
<parent>
<key1> value </1key>
<key1> value </1key>
<key1> value </1key>
<key1> value </1key>
...
<key1> value </1key>
</parent>
Now i dont know how many key value will be coming from xml in advance.How can i map it to hibernate object?
i can stor it in table in
primaryKey parentId key value
1 1 k1 val
2 1 k2 val
3 1 k3 val
4 2 k1 val
5 2 k2 val
6 3 k3 val
How can i map it to hibernate object?
I want following structure
class Parent{
int parentId;
String parent Name
KeyValue keyval ; //How do i model it?
}
AM using netbeans IDE.
You may indeed use a map:
You should also have a unique constraint on
[parent_id - key].