blog.augmentedfragments.com
entrepreneurial musings: Toggle Hibernate "Show SQL" at Runtime
http://blog.augmentedfragments.com/2009/10/toggle-hibernate-show-sql-at-runtime.html
Thursday, October 29, 2009. Toggle Hibernate "Show SQL" at Runtime. Okay, the title is a bit deceiving. As far as I know, you cannot modify the value of the configuration property "hibernate.show sql." However, that does not prohibit you from toggling at runtime whether SQL statement are output to your log files. Why would you want to do this? First, the solution, then I'll get to why:. Import org.apache.log4j.*;. Logger sqlLogger = Logger.getLogger("org.hibernate.SQL");. Do your stuff . This is great bu...