我正在使用JPA作爲我的項目...應該避免Hibernate查詢日誌記錄?
我的問題是:Whenever we are executing some query using the JPA the query is logged in the server.log file of the **JBOSS** .
我正在使用Jboss log4J。
但我想避免在server.log文件中打印查詢。 不改變以下屬性:
<property name="hibernate.show_sql" value="true"/>
相反,我嘗試:
<category name="org.hibernate">
<priority value="ERROR" />
</category>
在log4j.xml
沉綿查詢在控制檯或server.log中的全成查詢記錄。
任何人都可以請幫助我在這個如何實現這個......?
我必須更改配置以避免在server.log中查詢日誌?
是一個相當奇怪的要求,你登錄到另一個文件?否則爲什麼負擔應用程序的開銷? – ssedano
@ssedano是的基於標準我們正在登錄到不同的日誌... – Esh
好的,粘貼相關部分的log4j.xml請 – ssedano