HQL - 更新查询无效

时间:2014-01-30 13:04:41

标签: java hibernate exception hibernate-batch-updates

我已经完成了Hibernate实现。这是一个与更新功能相关的代码。

 Query updateQuery = session.createQuery(" update User set registered = '1' " + " where user_activation_key = '"+userUUID+"'");
 int result = updateQuery.executeUpdate();
  session.getTransaction().commit();

我得到了这个例外

Exception in thread "main" org.hibernate.QueryException: query must begin with SELECT or FROM: update [ update com.shop.domain.User set registered = '1'  where user_activation_key = '04c42f1c-a55d-49cd-8bde-8d340f054d76']
at org.hibernate.QueryException.generateQueryException(QueryException.java:137)
at org.hibernate.QueryException.wrapWithQueryString(QueryException.java:120)
at org.hibernate.hql.internal.classic.QueryTranslatorImpl.compile(QueryTranslatorImpl.java:247)
at org.hibernate.hql.internal.classic.QueryTranslatorImpl.compile(QueryTranslatorImpl.java:209)
at org.hibernate.engine.query.spi.HQLQueryPlan.<init>(HQLQueryPlan.java:126)
at org.hibernate.engine.query.spi.HQLQueryPlan.<init>(HQLQueryPlan.java:88)
at org.hibernate.engine.query.spi.QueryPlanCache.getHQLQueryPlan(QueryPlanCache.java:190)
at org.hibernate.internal.AbstractSessionImpl.getHQLQueryPlan(AbstractSessionImpl.java:301)
at org.hibernate.internal.AbstractSessionImpl.createQuery(AbstractSessionImpl.java:236)
at org.hibernate.internal.SessionImpl.createQuery(SessionImpl.java:1796)
at com.shop.service.ORMService.isUserAvailable(ORMService.java:56)
at com.shop.service.ORMService.activateUserAccount(ORMService.java:39)
at com.shop.web.controller.Test.main(Test.java:10)                    Caused by: org.hibernate.QueryException: query must begin with SELECT or FROM: update
at org.hibernate.hql.internal.classic.ClauseParser.token(ClauseParser.java:104)
at org.hibernate.hql.internal.classic.PreprocessingParser.token(PreprocessingParser.java:131)
at org.hibernate.hql.internal.classic.ParserHelper.parse(ParserHelper.java:61)
at org.hibernate.hql.internal.classic.QueryTranslatorImpl.compile(QueryTranslatorImpl.java:239)
... 10 more

的hibernate.cfg.xml

<hibernate-configuration>
<session-factory>
    <property name="hibernate.bytecode.use_reflection_optimizer">false</property>
    <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
    <property name="hibernate.connection.password">root123</property>
    <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/db</property>
    <property name="hibernate.connection.username">root</property>
    <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>

    <property name="hibernate.show_sql">true</property>

    <property name="hibernate.current_session_context_class">thread</property>
    <property name="hibernate.query.factory_class">org.hibernate.hql.internal.classic.ClassicQueryTranslatorFactory</property>


    <mapping resource="com/shop/domain/User.hbm.xml"></mapping>
</session-factory>

这是什么,查询必须以SELECT或FROM:update 开头?需要一些帮助?

3 个答案:

答案 0 :(得分:2)

在配置文件中,更改属性hibernate.query.factory_class
来自

org.hibernate.hql.internal.classic.ClassicQueryTranslatorFactory

org.hibernate.hql.ast.ASTQueryTranslatorFactory   

查看更多forum.hibernate.org


旁注

使用Query.setParameter()方法将参数传递给查询

Query updateQuery = session.createQuery("update User set registered = '1' 
                       where user_activation_key = :userUUID");
updateQuery.setParameter("userUUID", userUUID);

答案 1 :(得分:1)

HQL使用类名而不是表名,使用属性名而不是列名。我认为你的问题与此有关。

您是否也导入了正确的查询?

答案 2 :(得分:1)

Hibernate提供两种HQL解析器实现

  1. org.hibernate.hql.classic.ClassicQueryTranslatorFactory
  2. org.hibernate.hql.ast.ASTQueryTranslatorFactory
  3. 我们在下面的“hibernate.cfg.xml”配置文件中提到了

    <property name="hibernate.query.factory_class">org.hibernate.hql.classic.ClassicQueryTranslatorFactory</property>      
    

    或者

    <property name="hibernate.query.factory_class">org.hibernate.hql.ast.ASTQueryTranslatorFactory</property>
    

    此配置是可选的,如果您未明确配置HQL解析器实现,则默认HQL解析器实现将为 org.hibernate。 hql.ast.ASTQueryTranslatorFactory 要解决您的问题,请从hibernate.cfg.xml 文件中删除hibernate.query.factory_class的条目,以便hibernate可以使用默认的HQL解析器实现,或者将其更改为org.hibernate .hql.ast.ASTQueryTranslatorFactory来自 org.hibernate.hql.classic.ClassicQueryTranslatorFactory