在 Spring 基于注释的事务中设置隔离级别
我在我的项目中使用基于注释的事务管理(我用@Transactional注释一些方法)。我想全局设置隔离级别(而不是将其作为每个 @Transactional 注释的参数)。
是否可以在 XML 中进行配置?目前我的 xml 配置包含
<tx:annotation-driven transaction-manager="txManager"/>
<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>
是否可以以某种方式将隔离添加到 tx:annotation-driven?
I use in my project annotation-based transaction management (I annotate some methods with @Transactional). I would like to set the isolation level globally (not by putting it as an argument to each @Transactional annotation).
Is it possible configure that in the XML? Currently my xml configuration contains
<tx:annotation-driven transaction-manager="txManager"/>
<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>
Is it possible to add the isolation somehow to tx:annotation-driven?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Spring的事务管理在 Connection 如果您配置非默认事务隔离(例如通过在 @Transactional 注释中指定)。如果您可以配置连接的事务隔离,同时确保没有其他机制更改连接的事务隔离,那么您实际上可以全局设置应用程序使用的事务隔离。
例如,Commons DBCP BasicDataSource 类定义 defaultTransactionIsolation 属性来设置连接的事务隔离从池中返回:
Spring's transaction management sets the transaction isolation on the Connection if you configure a non-default transaction isolation (by specifying it in a @Transactional annotation for example). If you can configure the transaction isolation of the connections while ensuring no other mechanism changes the transaction isolation of the connections, then you in effect globally set the transaction isolation used by the application.
For example, the Commons DBCP BasicDataSource class defines the defaultTransactionIsolation property to set the transaction isolation of connections returned from the pool: