How can I map a Map in JPA without using Hibernate\'s classes?
A working example:
@ElementCollection(fetch=FetchType.EAGER) @CollectionTable(name = "TABLENAME") @MapKeyColumn(name = "KEY") @Column(name = "VALUE") public Map getMap() { return _map; }