首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

事宜配置

2012-10-09 
事务配置bean idSessionFactoryrefSessionFactory //bean!-- 事务拦截 --bean idtransacti

事务配置

<bean id="SessionFactory"ref="SessionFactory" /></bean><!-- 事务拦截 --><bean id="transactionInterceptor"ref="transactionManager" /><!-- 配置事务属性 --><property name="transactionAttributes"><props><prop key="save*">PROPAGATION_REQUIRED</prop><prop key="add*">PROPAGATION_REQUIRED</prop><prop key="remove*">PROPAGATION_REQUIRED</prop><prop key="update*">PROPAGATION_REQUIRED</prop><prop key="insert*">PROPAGATION_REQUIRED</prop><prop key="delete*">PROPAGATION_REQUIRED</prop><prop key="submit*">PROPAGATION_REQUIRED</prop><prop key="load*">PROPAGATION_REQUIRED</prop><prop key="built*">PROPAGATION_REQUIRED</prop><prop key="tran*">PROPAGATION_REQUIRED</prop><prop key="import*">PROPAGATION_REQUIRED</prop><prop key="transfer*">PROPAGATION_REQUIRED</prop><prop key="*">PROPAGATION_REQUIRED,readOnly</prop></props></property></bean><!-- 自动生成事务代理 --><beanclass="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator"><!-- 指定要生成代理的bean --><property name="beanNames"><list><value>*Dao</value></list></property><!-- 指定要使用的拦截器 --><property name="interceptorNames"><list><value>transactionInterceptor</value></list></property></bean>

热点排行