在WebLogic中获取JTA事务超时值
有没有办法获取JTA事务超时值? UserTransaction接口只有setTransactionTimeout方法。在WebLogic中是否有特定的方法来获取它的值?
Is there a way to get JTA transaction timeout value? UserTransaction interface has only setTransactionTimeout method. Is there a specific way of getting its value in WebLogic?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您只需要默认值,可以使用 weblogic。 management.configuration.JTAMBean。
If you just want the default, you can use weblogic.management.configuration.JTAMBean.
在 WLS 10.2 中,您可以使用 WLS 自定义扩展
weblogic.transaction.Transaction
,然后调用getTimeToLiveMillis()
。In WLS 10.2, you can use the WLS custom extension
weblogic.transaction.Transaction
and then callgetTimeToLiveMillis()
.没有实际的解决方案可以通过简单的 API 调用来确定当前事务超时值。
作为解决方案,我使用了上面韦恩的建议来获取默认值。此外,由于我根据配置文件自行设置所有非默认值,因此当需要获取当前事务超时值时,我会再次读取/缓存它。
There is no actual solution to determine current transaction timeout value with simple API call.
As a solution I've used the advice from Wayne above to get the default value. Also as all non-default values I set myself based on configuration file, I read/cache it again when there is a need to get the value for current transaction timeout.