Hey people, i have a the following map* which is giving me lots of trouble:
Map<MetricSourceInterface, AliasesInterface>
MetricSourceInterface is an entity with simple properties. AliasesInterface is an entity with only an Id and a list of strings.
Hibernate is creating the database schema so theres no problem with changing it whatsoever.
On a side-note, this is a sub problem from trying to map:
Map<MetricSourceInterface, List<String>>
Does anyone know the proper way to solve this?
Theres only one limitation for this, i dont want to create an UserType for AliasesInterface or List
Thx in advance :)
*edited with pstanton's correction :)