is there any way to persist the map with dymamic fields.Here is sample code
Table :
A table with more than 200 fields.
POJO :
<code>
<pre>
public class DynamicEntity {
private Long id;
private Map<String,String> fields = new HashMap();
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public void add(String key,String value){
fields.put(key,value);
}
}
</pre>
pojo 中的地图包含动态字段。交易代码..
GenericData data = new GenericData();
data.addField("name", "CF");
data.addField("description", "CF-USA");
data.addField("server", "ServerName");
//get the session
session.save(data);
当我保存 pojo 时,有什么方法可以在这里保存地图吗?这里的字段没有在 hbm 文件中配置,因为所有字段都是动态的。
我的基本想法是不在 hbm 文件中配置 200 个字段。
Regards,
Ravi.