我正在使用dropwizard,它在内部使用JPA annotatons和hibernate来映射对象。其中一个对象有一个我定义为
的map字段 @Column
@ElementCollection(targetClass=String.class)
Map<String, String> routes;
我一直看到以下错误
org.hibernate.MappingException: Could not determine type for: java.util.Map, at table
我已经尝试过SO
上提到的一些事情添加了@ MapKey
注释
在getter上添加了注释
将Map更改为HashMap似乎无法修复它。