3

我有一个如下所示的休眠映射:

<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>

我的对象的存储和加载工作正常。我的问题是查询支持休眠的地图,我将如何使用标准 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 where M.attributes ['其他'].string = ?” 不工作。那么我将如何查询组件的一部分呢?

类型是这样实现的:

...
private static final String[] PROPERTY_NAMES = { "type", "string", "integer", "double" };

public String[] getPropertyNames() {
    return PROPERTY_NAMES;
}
...
4

1 回答 1

0

尝试为条件创建别名。

criteria.createAlias( "attributes", "as" );
criteria.add( Restrictions.ilike( "as.other", new Variant("aValue") );
于 2011-12-16T06:35:10.267 回答