Posted on 2007-01-23 17:22
趙永超 閱讀(2337)
評論(1) 編輯 收藏 所屬分類:
Hibernate
在Hibernate配置文件中加入下面代碼:
<property name="hibernate.query.factory_class">org.hibernate.hql.classic.ClassicQueryTranslatorFactory</property>
如果是Spring+Hibernate開發,則在定義Hibernate配置屬性時候加入:
<property name="hibernateProperties">
<props>
<prop key="hibernate.query.factory_class">org.hibernate.hql.classic.ClassicQueryTranslatorFactory</prop>
</props>
</property>
?