PROPAGATION_REQUIRED,readOnlyPROPA" />

欧美三区_成人在线免费观看视频_欧美极品少妇xxxxⅹ免费视频_a级毛片免费播放_鲁一鲁中文字幕久久_亚洲一级特黄

Spring中事務的定義

系統 1614 0

轉載自:http://www.blogjava.net/280211429/articles/75529.html,推薦看原文頁面,原頁面的CSS比較好看,看文字也非常舒服

Spring中事務的定義:

一、Propagation :

對于特定的方法或方法命名模式,代理的具體事務行為由事務屬性驅動,如下面的例子所示:
<prop key="load*">PROPAGATION_REQUIRED,readOnly</prop>
<prop key="store*">PROPAGATION_REQUIRED</prop>

  key屬性確定代理應該給哪個方法增加事務行為。這樣的屬性最重要的部份是傳播行為。有以下選項可供使用:

  • PROPAGATION_REQUIRED--支持當前事務,如果當前沒有事務,就新建一個事務。這是最常見的選擇。
  • PROPAGATION_SUPPORTS--支持當前事務,如果當前沒有事務,就以非事務方式執行。
  • PROPAGATION_MANDATORY--支持當前事務,如果當前沒有事務,就拋出異常。
  • PROPAGATION_REQUIRES_NEW--新建事務,如果當前存在事務,把當前事務掛起。
  • PROPAGATION_NOT_SUPPORTED--以非事務方式執行操作,如果當前存在事務,就把當前事務掛起。
  • PROPAGATION_NEVER--以非事務方式執行,如果當前存在事務,則拋出異常。

前六個策略類似于EJB CMT:常量名相同,因此,對EJB開發人員來說,應該立刻就感到熟悉。第七個(PROPAGATION_NESTED)是Spring所提供的一個特殊變量。它要求事務管理器或者使用JDBC 3.0 Savepoint API提供嵌套事務行為(如Spring的DataSourceTransactionManager),或者通過JTA支持嵌套事務。

二、Isolation Level(事務隔離等級):
1、Serializable:最嚴格的級別,事務串行執行,資源消耗最大;
2、 REPEATABLE READ: 保證了一個事務不會修改已經由另一個事務讀取但未提交(回滾)的數據。避免了“臟讀取”和“不可重復讀取”的情況,但是帶來了更多的性能損失。
3、 READ COMMITTED: 大多數主流數據庫的默認事務等級,保證了一個事務不會讀到另一個并行事務已修改但未提交的數據,避免了“臟讀取”。該級別適用于大多數系統。
4、Read Uncommitted:保證了讀取過程中不會讀取到非法數據。

spring中的Isolation屬性:
1、ISOLATION_DEFAULT :使用當前數據源的默認級別
2、ISOLATION_READ_UNCOMMITTED :Dirty reads, non-repeatable reads, and phantom reads can occur.
3、ISOLATION_READ_COMMITTED :Dirty reads are prevented; non-repeatable reads and phantom reads can occur.
4、ISOLATION_REPEATABLE_READ:Dirty reads and non-repeatable reads are prevented; phantom reads can occur.
5、ISOLATION_SERIALIZABLE:Dirty reads, non-repeatable reads, and phantom reads are prevented.

三、readOnly
事務屬性中的readOnly標志表示對應的事務應該被最優化為只讀事務。這是一個最優化提示。在一些情況下,一些事務策略能夠起到顯著的最優化效果,例如在使用Object/Relational映射工具(如:Hibernate或TopLink)時避免dirty checking(試圖“刷新”)。

四、Timeout

在事務屬性中還有定義“timeout”值的選項,指定事務超時為幾秒。在JTA中,這將被簡單地傳遞到J2EE服務器的事務協調程序,并據此得到相應的解釋。

事務劃分策略

1、推薦在業務層使用事務,這樣可以允許業務層捕獲導致rollback的異常,并拋出恰當的業務層異常;不在dao層使用事務是因為這會限制了dao重用其他事務需求,并且dao層沒有實現業務邏輯,并且原子性也是業務層的概念。

spring聲明性事務的劃分:
1、有四個地方需要配置:The four participants are transaction manager, proxy factory, transaction interceptor, and a set of transaction attributes.




2、使用ProxyFactoryBean/Transaction Interceptor( transactionInterceptor )配置spring事務

以下為配置實例:

      <!-- The DBCP DataSource -->
  <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"  
        destroy-method="close">
    <property name="driverClassName">
      <value>${jdbc.driverClassName}</value>
    </property>
    <property name="url"><value>${jdbc.url}</value></property>
    <property name="username"><value>${jdbc.username}</value></property>
    <property name="password"><value>${jdbc.password}</value></property>
  </bean>
   
  <!-- The DAO class -->
  <bean id="dao" 
class="org.springframework.prospring.ticket.dao.jdbc.JdbcBoxOfficeDao">
    <property name="dataSource">
      <ref local="dataSource"/>
    </property> 
  </bean>
   
  <!-- The transactionmanager to use for regular non JTA datasource -->

      
        <bean id="transactionManager"
      
      
        
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
      
      
    <property name="dataSource">
      <ref local="dataSource"/>
    </property> 
  </bean>
   
  <!-- TransactionInterceptor -->

      
        <bean id="transactionInterceptor" 
      
      
        
class="org.springframework.transaction.interceptor.TransactionInterceptor">
      
      
        <property name="transactionManager">
      
      
        <ref bean="transactionManager"/>
      
      
        </property>
      
      
        <property name="transactionAttributeSource">
      
      
        <value>
      
      
        org.springframework.prospring.ticket.service.BoxOffice.get*=PROPAGATION_SUPPORTS,re
      
      
        adOnly
      
      
        org.springframework.prospring.ticket.service.BoxOffice.allocate*=PROPAGATION_REQUIR
      
      
        ED
      
      
      </value>
    </property>
  </bean>  
   
  <!-- Transactional proxy for the primary business object -->

      
        <bean id="boxOffice" 
      
      
        
class="org.springframework.aop.framework.ProxyFactoryBean">
      
      
        <property name="target">
      
      
        <ref local="boxOfficeTarget"/>
      
      
        </property>
      
      
        <property name="proxyInterfaces">
      
      
        <value>org.springframework.prospring.ticket.service.BoxOffice</value>
      
      
        </property>
      
      
        <property name="interceptorNames">
      
      
        <value>transactionInterceptor</value>
      
      
        </property>
      
      
  </bean>  
   
  <!-- Business Object -->
  <bean id="boxOfficeTarget" 
    class="org.springframework.prospring.ticket.service.BoxOfficeImpl">
    <property name="boxOfficeDao">
      <ref local="dao"/>
    </property> 
  </bean>
    

3、使用TransactionProxyFactoryBean配置spring事務
以下為配置實例:

        <!-- The DBCP DataSource -->
  <bean id="dataSource" 
class="org.apache.commons.dbcp.BasicDataSource" 
        destroy-method="close">
    <property name="driverClassName">
      <value>${jdbc.driverClassName}</value>
    </property>
    <property name="url"><value>${jdbc.url}</value></property>
    <property name="username"><value>${jdbc.username}</value></property>
    <property name="password"><value>${jdbc.password}</value></property>
  </bean>
   
  <!-- The DAO class -->
  <bean id="dao"
class="org.springframework.prospring.ticket.dao.jdbc.JdbcBoxOfficeDao">
    <property name="dataSource">
      <ref local="dataSource"/>
    </property> 
  </bean>
   
  <!-- The transactionmanager to use for regular non JTA datasource -->

      
        <bean id="transactionManager"
      
      
        class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
      
      
    <property name="dataSource">
      <ref local="dataSource"/>
    </property> 
  </bean>
   
  <!-- Transactional proxy and the primary business object -->

      
        <bean id="boxOffice" 
      
      
         
class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
      
      
        <property name="transactionManager"><ref bean="transactionManager"/></property>
      
      
        <property name="target">
      
      
        <bean class="org.springframework.prospring.ticket.service.BoxOfficeImpl">
      
      
        <property name="boxOfficeDao">
          <ref local="dao"/>
        </property> 
      </bean>
    </property>

      
        <property name="transactionAttributes">
      
      
        
<props>
      
      
        
<prop key="get*">PROPAGATION_SUPPORTS,readOnly</prop>
      
      
        
<prop key="allocate*">PROPAGATION_REQUIRED</prop>
      
      
        
</props>
      
      
        
</property>
      
      
  </bean>  
    

4、使用BeanNameAutoProxyCreator配置spring事務
如果有大量的bean需要使用事物,那么只要在配置文件中提供bean name給BeanNameAutoProxyCreator,spring就會個給該bean提供事務代理,配置實例如下:

        <!-- The DBCP DataSource -->
  <bean id="dataSource" 
class="org.apache.commons.dbcp.BasicDataSource" 
      destroy-method="close">
    <property name="driverClassName">
      <value>${jdbc.driverClassName}</value>
    </property>
    <property name="url"><value>${jdbc.url}</value></property>
    <property name="username"><value>${jdbc.username}</value></property>
    <property name="password"><value>${jdbc.password}</value></property>
  </bean>
   
  <!-- The DAO class -->
  <bean id="dao"
class="org.springframework.prospring.ticket.dao.jdbc.JdbcBoxOfficeDao">
    <property name="dataSource">
      <ref local="dataSource"/>
    </property> 
  </bean>
   
  <!-- The transactionmanager to use for regular non JTA datasource -->

      
        <bean id="transactionManager"
      
      
        
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
      
      
    <property name="dataSource">
      <ref local="dataSource"/>
    </property> 
  </bean> 
   
  <!-- TransactionInterceptor -->

      
        <bean id="transactionInterceptor" 
      
      
        class="org.springframework.transaction.interceptor.TransactionInterceptor">
      
      
        <property name="transactionManager">
      
      
        <ref bean="transactionManager"/>
      
      
        </property>
      
      
        <property name="transactionAttributeSource">
      
      
        <value>
      
      
        org.springframework.prospring.ticket.service.BoxOffice.get*=PROPAGATION_SUPPORTS
      
      
        ,readOnly
      
      
        org.springframework.prospring.ticket.service.BoxOffice.allocate*=
      
      
        PROPAGATION_REQUIRED
      
      
        </value>
      
      
        </property>
      
      
  </bean>  
   
  <!-- BeanNameAutoProxyCreator -->

      
        <bean id="autoProxyCreator" 
      
      
        class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
      
      
        <property name="interceptorNames">
      
      
        <value>transactionInterceptor</value>
      
      
        </property>
      
      
        <property name="beanNames">
      
      
        <list>
      
      
        <idref local="boxOffice"/>
      
      
        </list>
      
      
        </property>
      
      
</bean>  
   
<!-- Business Object -->
<bean id="boxOffice"
   class="org.springframework.prospring.ticket.service.BoxOfficeImpl">
  <property name="boxOfficeDao">
    <ref local="dao"/>
  </property> 
</bean>
    

Spring中事務的定義


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 国产网址在线观看 | 红杏网站永久免费视频入口 | 91高清免费观看 | 三级网址在线播放 | 午夜看片免费 | 日日夜夜天天久久 | 亚洲精品一 | 亚洲已满18点击进入在线观看 | 思瑞在线观看 | 成人在线视频观看 | 久久一区二区视频 | 一区二区福利视频 | 国产男女自拍视频 | 国产日韩精品一区 | 亚洲精品视频一区 | 高清在线一区二区 | 精品一区二区三区中文字幕 | 性色av免费在线观看 | 在线免费日韩 | 亚洲成人一区二区 | 香港三级日本三级韩国三级韩 | 亚洲精品无码成人A片在线虐 | 亚洲 精品 综合 精品 自拍 | 精品免费国产一区二区三区四区 | 亚洲一区中文字幕在线观看 | 91欧美精品激情在线观看 | 一区二区三区久久 | 国产欧美日韩在线 | 久久综合九色综合欧美9v777 | 久久夜色精品国产亚洲 | 99久久99 | 国产成人精品在线观看 | 26uuu天天夜夜综合 | 奇米精品| 免费看一级视频 | 日韩亚洲人成网站在线播放 | 狠狠操狠狠干 | 91精品国产综合久久婷婷香蕉 | 国产精品久久久久无码av | 精品一区二区视频 | 日韩av一二三区 |