0

我想用一个getValueByLabel方法做一个简单的查询:

这是我的代码:

public Config getValueByLabel(String label) throws EntityPersistException{

    try {
        Query query = em.createQuery("select id from config where config_label=:label",Long.class);
        query.setParameter("label", label);
        List<Long> config = query.getResultList();

        return em.getReference(Config.class, config.get(0));
    }
...

当我想启动我得到的方法时:

org.hibernate.hql.internal.ast.QuerySyntaxException: config is not mapped [select id from config where config_label=:label]

任何想法如何解决这个问题?

更新

我在用:

hibernate 4.0.1.Final 和一个 postgresql db 1.16.1

4

1 回答 1

0

hql 的语法区分大小写。请查看查询中使用的表/实体和列/实例变量名称是否与对象相同。

于 2013-05-04T09:55:49.000 回答