JSP 中spring事务配置详解

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=" "> <!-- 使用annotation @Repository,@Service自动注册bean, 并保证@Required、@Autowired的属性被注入的包范围 --> <context:component-scan base-package="com.rd,com.rongdu"/> <context:annotation-config/> <bean destroy-method="close"> <!-- Connection Info --> <property value="com.mysql.jdbc.Driver"/> <property value="jdbc:mysql://localhost:3306/sfd?useUnicode=true&amp;characterEncoding=utf8"/> <property value="root"/> <property value="123456"/> <!-- 检查数据库连接池中空闲连接的间隔时间 --> <property value="4" /> <!-- 连接池中未使用的链接最大存活时间 --> <property value="240" /> <!-- 设置每个分区含有connection最大个数 --> <property value="20" /> <!-- 设置每个分区含有connection最小个数 --> <property value="10" /> <!-- 设置每个分区数 --> <property value="3" /> <!-- 设置分区中的connection增长数量 --> <property value="5" /> <property value="50"/> <property value="3"/> </bean> <bean> <property> <ref bean="dataSource" /> </property> </bean> <bean> <constructor-arg index="0" ref="dataSource"/> </bean> <bean> <property ref="dataSource"/> </bean> <tx:advice transaction-manager="txManager"> <tx:attributes> <tx:method propagation="REQUIRED" /> <tx:method propagation="REQUIRED" /> <tx:method propagation="REQUIRED" /> <tx:method propagation="REQUIRED" /> </tx:attributes> </tx:advice> <aop:config> <aop:pointcut expression="execution(* com.test.service.*.*(..))" /> <aop:advisor advice-ref="txAdvice" pointcut-ref="allManagerMethod" /> </aop:config> </beans>

其中,有个通配符是有点问题的。事务在于更新数据时候使用,查询不需要事务。所以直接用* ,这样太过于暴力了。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzjjdg.html