How can I map a Map in JPA without using Hibernate\'s classes?
Does not the following work for you?
@ManyToMany(cascade = CascadeType.ALL) Map entitytMap = new HashMap();
EntityType could be any entity type, including a String.
EntityType
String