Hibernate/seam:hibernate.show_sql 设置
<persistence-unit name="acmDB" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<jta-data-source>acm20-ds</jta-data-source>
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.OracleDialect"/>
<property name="hibernate.hbm2ddl.auto" value="update"/>
<property name="hibernate.show_sql" value="false"/>
<property name="hibernate.cache.provider_class" value="org.hibernate.cache.HashtableCacheProvider"/>
<property name="hibernate.transaction.manager_lookup_class" value="org.hibernate.transaction.WeblogicTransactionManagerLookup"/>
</properties>
</persistence-unit>
有时我将 hibernate.show_sql 设置为 true
但随后我必须再次重新启动应用程序服务器。我正在使用 Weblogic 10 和 JRebel。
是否可以在我需要的位置的代码中将 hibernate.show_sql 设置为 true ?
<persistence-unit name="acmDB" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<jta-data-source>acm20-ds</jta-data-source>
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.OracleDialect"/>
<property name="hibernate.hbm2ddl.auto" value="update"/>
<property name="hibernate.show_sql" value="false"/>
<property name="hibernate.cache.provider_class" value="org.hibernate.cache.HashtableCacheProvider"/>
<property name="hibernate.transaction.manager_lookup_class" value="org.hibernate.transaction.WeblogicTransactionManagerLookup"/>
</properties>
</persistence-unit>
Sometimes I set hibernate.show_sql
to true
But then I have to restart the application server again. I am using Weblogic 10 and JRebel.
Is it possible to set hibernate.show_sql
to true in code at the location I need it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 Hibernate 配置为通过现有日志记录工具(例如 Log4j)执行日志记录,请参阅 3.5。日志记录。在这种情况下,您可以使用日志记录工具在运行时控制 Hibernate 日志记录类别的日志级别。
例如,在 Log4j 中:
You can configure Hibernate to perform logging via your existing logging facilities such as Log4j, see 3.5. Logging. In this case you can control log level of Hibernate logging categories in runtime with your logging facilities.
For example, in Log4j: