最佳答案
我想知道是否有可能使用注释在下面的类中使用 JPA2持久化 attributes
映射
public class Example {
long id;
// ....
Map<String, String> attributes = new HashMap<String, String>();
// ....
}
因为我们已经有了一个预先存在的生产数据库,所以理想情况下,attributes
的值可以映射到以下现有的表:
create table example_attributes {
example_id bigint,
name varchar(100),
value varchar(100));