Websphere AS 事务管理器日志在哪里?
Websphere Application Server(最好是 7.0)是否有事务管理器日志?我想了解应用程序线程的事务如何以及何时启动,它们是否以及何时提交或回滚等。
Does Websphere Application Server (7.0, preferably) have a log for transaction manager? I'd like to see how and when transactions are started for my application's threads, whether and when they commit or rollback, etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议为包
com.ibm.wsspi.uow
设置日志记录(可能是com.ibm.websphere.uow
和com.ibm.websphere.jtaextensions
也)到FINEST
(WebSphere 管理控制台中的某个位置)。这将为您提供有关正在发生的事情的大量信息。也许有关 它是WebSphere 特定的PlatformTransactionManager 也提供了有用的背景信息(包、类、jndi 等)。
I would suggest to set logging for the package
com.ibm.wsspi.uow
(maybecom.ibm.websphere.uow
andcom.ibm.websphere.jtaextensions
too) toFINEST
(somewhere in your WebSphere administrative console). This should give you plenty information about what's going on.Maybe the Spring Framework documentation about it's WebSphere-specific PlatformTransactionManager gives helpful background infos (packages, classes, jndi, etc.) too.