国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JSP > 正文

JSP 中spring事務配置詳解

2020-07-27 21:23:38
字體:
來源:轉載
供稿:網友

JSP 中spring事務配置詳解

前幾天被問到,如何防止服務器宕機,造成的數據操作的不完全。

問了一下同事,是事務。哎,恍然大悟,迷糊一時了。

聲明式的事務配置,這個是最推薦的,配置到service層。

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"  xmlns:context="http://www.springframework.org/schema/context"  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"  xmlns:tx="http://www.springframework.org/schema/tx"  xsi:schemaLocation="  http://www.springframework.org/schema/beans   http://www.springframework.org/schema/beans/spring-beans.xsd  http://www.springframework.org/schema/tx  http://www.springframework.org/schema/tx/spring-tx.xsd  http://www.springframework.org/schema/context  http://www.springframework.org/schema/context/spring-context.xsd  http://www.springframework.org/schema/aop  http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">    <!-- 使用annotation @Repository,@Service自動注冊bean, 并保證@Required、@Autowired的屬性被注入的包范圍 -->  <context:component-scan base-package="com.rd,com.rongdu"/>  <context:annotation-config/>    <bean id="dataSource" class="com.jolbox.bonecp.BoneCPDataSource" destroy-method="close">    <!-- Connection Info -->    <property name="driverClass" value="com.mysql.jdbc.Driver"/>    <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/sfd?useUnicode=true&amp;characterEncoding=utf8"/>    <property name="username" value="root"/>    <property name="password" value="123456"/>    <!-- 檢查數據庫連接池中空閑連接的間隔時間 -->    <property name="idleConnectionTestPeriod" value="4" />    <!-- 連接池中未使用的鏈接最大存活時間 -->    <property name="idleMaxAge" value="240" />    <!-- 設置每個分區含有connection最大個數 -->    <property name="maxConnectionsPerPartition" value="20" />    <!-- 設置每個分區含有connection最小個數 -->    <property name="minConnectionsPerPartition" value="10" />    <!-- 設置每個分區數 -->    <property name="partitionCount" value="3" />    <!-- 設置分區中的connection增長數量 -->    <property name="acquireIncrement" value="5" />    <property name="statementsCacheSize" value="50"/>     <property name="releaseHelperThreads" value="3"/>  </bean>  <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">    <property name="dataSource">      <ref bean="dataSource" />    </property>  </bean>  <bean id="namedParameterJdbcTemplate" class="org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate">    <constructor-arg index="0" ref="dataSource"/>   </bean>  <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">     <property name="dataSource" ref="dataSource"/>  </bean>      <tx:advice id="txAdvice" transaction-manager="txManager">    <tx:attributes>      <tx:method name="add*" propagation="REQUIRED" />      <tx:method name="delete*" propagation="REQUIRED" />      <tx:method name="update*" propagation="REQUIRED" />      <tx:method name="*" propagation="REQUIRED" />    </tx:attributes>  </tx:advice>    <aop:config>    <aop:pointcut id="allManagerMethod"      expression="execution(* com.test.service.*.*(..))" />    <aop:advisor advice-ref="txAdvice" pointcut-ref="allManagerMethod" />  </aop:config></beans>

其中,有個通配符是有點問題的。事務在于更新數據時候使用,查詢不需要事務。所以直接用* ,這樣太過于暴力了。

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 和静县| 满城县| 灵武市| 登封市| 射洪县| 三台县| 富源县| 玉树县| 横山县| 吉首市| 汪清县| 禄丰县| 尚志市| 烟台市| 大理市| 九龙坡区| 吉林省| 兰溪市| 喜德县| 道孚县| 和政县| 通辽市| 亳州市| 南汇区| 扶沟县| 鹤峰县| 中方县| 克拉玛依市| 汽车| 安宁市| 天津市| 收藏| 五大连池市| 渑池县| 治多县| 科技| 昌都县| 乳山市| 绥宁县| 汉川市| 会东县|