最佳答案
有没有一种方法可以从 Hibernate Criteria
获得(待生成的) SQL?
理想情况下,我会有这样的东西:
Criteria criteria = session.createCriteria(Operator.class);
... build up the criteria ...
... and then do something like ...
String sql = criteria.toSql()
(But this of course does not exist)
这个想法就是使用 SQL 作为一个巨大的“ MINUS”查询的一部分(我需要找到两个相同的模式之间的差异-相同的结构,而不是数据-MINUS 不支持 Hibernate)
(顺便说一句,我知道我可以从日志文件中检查 SQL)