hql 转 sql
Posted ThinkMine
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hql 转 sql相关的知识,希望对你有一定的参考价值。
import org.hibernate.engine.SessionFactoryImplementor;
import org.hibernate.hql.ast.QueryTranslatorImpl;
QueryTranslatorImpl translator = new QueryTranslatorImpl("queryIdentifier", hql,
Collections.EMPTY_MAP, (SessionFactoryImplementor) getSessionFactory());
translator.compile(Collections.EMPTY_MAP, false);
translator.getSQLString();
以上是关于hql 转 sql的主要内容,如果未能解决你的问题,请参考以下文章