I would like to add a mapping like
Map<String, List<String>> attributes;
I have used already @MapKeyColumn
for other situation, but here I do have a key/value table where a key might occur several time.
How would you solve this? Is there any (JPA built-in) solution for that kind of problem domain?
Thank you for your response!