我有一个hibernate映射,如下所示:
<hibernate-mapping>
<class name="MutableEvent" table="events"
mutable="true" dynamic-insert="true" dynamic-update="true">
<id name="id">
<generator class="assigned" />
</id>
<property name="sourceTimestamp" />
<property name="entryTimestamp" />
<map name="attributes" table="event_attribs"
access="field" cascade="all">
<key column="id" />
<map-key type="string" column="key" />
<element type="VariantHibernateType">
<column name="value_type" not-null="false" />
<column name="value_string" not-null="false" />
<column name="value_integer" not-null="false" />
<column name="value_double" not-null="false" />
</element>
</map>
</class>
</hibernate-mapping>
存储和加载我的Object工作正常。我的问题是,是否支持hibernate中的地图,如何使用api标准进行查询?
我想做这样的事情(这实际上是我的测试用例的一部分):
...
m.getAttributes().put("other", new Variant("aValue"));
this.storeEvent(MutableEvent.fromEvent(e));
getSession().clear();
MutableEvent m = (MutableEvent) getSession().get(MutableEvent.class, e.getId());
Assert.assertNotNull(m.getAttributes().get("other"));
Assert.assertEquals(new Variant("aValue"), m.getAttributes().get("other"));
Assert.assertNull(m.getAttributes().get("other2"));
getSession().clear();
crit = DetachedCriteria.forClass(MutableEvent.class);
crit.add(Restrictions.eq("attributes.other", new Variant("aValue")));
List l = this.findByCriteria(crit);
Assert.assertEquals(1, l.size());
重要的是,这失败了“无法解析属性:attributes.other”:
crit.add(Restrictions.eq("attributes.other", new Variant("aValue")));
List l = this.findByCriteria(crit);
是否有针对该问题的解决方案?
更新
List l = find("from MutableEvent M where M.attributes['other'] = ?", new Variant("aValue"));
上面的代码不会抛出异常,但查询本身仍然不是我想要的。我创建了一个自定义类型,可以通过映射看到,实际上我想查询一个字符串(列value_string),但任何尝试修改查询以访问类型的一部分,如在中从MutableEvent M M.attributes ['other']。string =?“不起作用。那么我如何查询组件的一部分呢?
Type的实现方式如下:
...
private static final String[] PROPERTY_NAMES = { "type", "string", "integer", "double" };
public String[] getPropertyNames() {
return PROPERTY_NAMES;
}
...
答案 0 :(得分:0)
尝试为条件创建别名。
criteria.createAlias( "attributes", "as" );
criteria.add( Restrictions.ilike( "as.other", new Variant("aValue") );