在 Spring.Net 中使用 Transaction 属性时如何覆盖默认隔离级别
在方法上使用 Transaction() 属性时,默认隔离级别为 ReadCommited。我想要做的是在 Spring.NET 配置中将默认隔离级别设置为 ReadUncommited (以免修改当前存在的所有 Transaction 属性定义)
我该怎么做?可以用 Spring.NET 1.2 来完成吗?
我尝试遵循文档< /a> 使用 tx:advice 等无济于事。
我什至已经使用 Reflector 进入了 Spring 的代码,但我似乎从中了解到的是,Spring 只是从方法的属性声明中读取设置。
可以做到吗?还是我必须仔细检查代码并在必要时修改属性?
When using the Transaction() attribute on a method the default isolation level is ReadCommitted. What I want to do is set the default isolation level to ReadUncommitted in the Spring.NET config ( so as not to modify all the Transaction attribute definitions that exist currently)
How do I do it ? Can it be done with Spring.NET 1.2 ?
I've tried to follow the documentation using tx:advice etc to no avail.
I've even stepped in to the code of Spring with Reflector but all I seem to understand from that, is that Spring simply reads the settings from the Attribute declaration on the method.
Can it be done or am I going to have to go through the code and modify the attribute where necessary?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用例如:
我通常在我的存储库方法上 。它与
结合使用。I usually use e.g.:
on my repository methods. And it works in conjuction with
<tx:attribute-driven transaction-manager="HibernateTransactionManager"/>
.您应该能够创建自己的事务拦截器来扩展标准事务拦截器。然后使用 ObjectNameAutoProxyCreator 而不是您引用的 TransactionProxyFactoryObject 连接该代理。
You should be able to create your own transaction interceptor that extends the standard transaction interceptor. And then hook up that one using ObjectNameAutoProxyCreator instead of the TransactionProxyFactoryObject that you referenced.