0
我想看到的Hibernate執行的SQL查詢,所以我有:休眠顯示查詢
AnnotationConfiguration hibernateConfig = new AnnotationConfiguration();
...//configuring the data url, user, etc.
hibernateConfig.setProperty("show_sql", "true");
hibernateConfig.setProperty("format_sql", "true");
這是很難找到正確的屬性名稱,所以我用了相同的名字就像我在xml文件中使用的一樣,但是我沒有找到任何輸出到日誌。
除了添加上面兩行外,我還需要做什麼嗎?