Pessoal,
existe alguma forma de copiar a query SQL executada pelo Hibernate?
Por exemplo, tenho a seguinte query:
Query hql = sessao.createQuery("select sf from Unidade up " +
"left join up.sistema sf " +
"left join up.plataforma ph " +
"where ph.id.cod = ? ");
hql.setString(0, codPlataforma);
sistemas = hql.list();
Ae debugando o atributo hql por exemplo, pegar o SQL executada, com o nome das tabelas e tal… Deve ter alguma forma fácil de fazer isso né?
Alguem me ajuda?