我正在尝试使用 JPA 将以下类型的对象持久保存到数据库中:
@ElementCollection(fetch=FetchType.EAGER)
private Map<String, List<String>> parameters;
看起来它应该可以工作,但是当我运行程序时,我得到:
openjpa.MetaData - OpenJPA cannot map field <package.classname>.parameters efficiently. It is of an unsupported type. The field value will be serialized to a BLOB by default.
任何帮助将不胜感激。谢谢。