`

SpringMVC搭建中事务无法回滚的问题

 
阅读更多

applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:context="http://www.springframework.org/schema/context"
	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-3.0.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-3.0.xsd
           http://www.springframework.org/schema/aop
           http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
           http://www.springframework.org/schema/tx 
           http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
           
	<context:annotation-config />
	<context:component-scan base-package="com.myland.*" >

	</context:component-scan>

	<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
		<property name="locations">
			<value>classpath:jdbc.properties</value>
		</property>
	</bean>
	
	<bean id="dataSource1"	class="org.apache.commons.dbcp.BasicDataSource"	destroy-method="close">				
		<property name="driverClassName"  value="${mysql.driverClassName}"></property>   
		<property name="url" value="${mysql.url}"></property>    
		<property name="username" value="${mysql.username}"></property>   
		<property name="password" value="${mysql.password}"></property>   
		<property name="initialSize" value="${mysql.initialSize}"></property>   
		<property name="maxActive" value="${mysql.maxActive}"></property>     
		<property name="maxIdle" value="${mysql.maxIdle}"></property>  
		<property name="timeBetweenEvictionRunsMillis" value="${mysql.timeBetweenEvictionRunsMillis}"></property>  
		<property name="minEvictableIdleTimeMillis" value="${mysql.minEvictableIdleTimeMillis}"></property>  
	</bean>
	
	<!-- 阿里连接池 -->
	<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"  init-method="init" destroy-method="close">
   		<!-- 驱动名称   -->
        <property name="DriverClassName" value="com.mysql.jdbc.Driver" />
        <property name="url" value="${mysql.url}" /> 
        <!-- 数据库用户名称   -->
        <property name="username" value="root" />  
        <!-- 数据库密码 -->  
        <property name="password" value="root" />  
        <!-- 连接池最大使用连接数量 -->  
        <property name="maxActive" value="20" />  
        <!-- 初始化大小 -->  
        <property name="initialSize" value="5" />  
        <!-- 获取连接最大等待时间 -->  
        <property name="maxWait" value="60000" />  
        <!-- 连接池最小空闲 -->  
        <property name="minIdle" value="2" />  
        <!-- 逐出连接的检测时间间隔 -->  
        <property name="timeBetweenEvictionRunsMillis" value="3000" />  
        <!-- 最小逐出时间  --> 
        <property name="minEvictableIdleTimeMillis" value="300000" />  
        <!-- 测试有效用的SQL Query -->  
        <property name="validationQuery" value="SELECT 'x'" />  
        <!-- 连接空闲时测试是否有效 -->  
        <property name="testWhileIdle" value="true" />  
        <!-- 获取连接时测试是否有效 -->  
        <property name="testOnBorrow" value="false" />  
        <!-- 归还连接时是否测试有效  --> 
        <property name="testOnReturn" value="false" />
        <!-- 统计监控信息 -->
        <property name="filters" value="stat,wall,log4j" />
   	</bean>
   	

    <!-- define the SqlSessionFactory, notice that configLocation is not needed when you use MapperFactoryBean -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />          
         <property name="configLocation" value="classpath:mybatis-config.xml"/>    
         <property name="mapperLocations">
			<list>
				<value>classpath*:com/myland/myapp/**/*Mapper.xml</value>
			</list>
		</property>                               
    </bean>
    

    <bean id="sqlSessionTemplate" class="org.mybatis.spring.SqlSessionTemplate" > 
        <constructor-arg ref="sqlSessionFactory" />
    </bean>
    
    
	<!-- 事务处理  begin -->
	<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="select*" read-only="true" propagation="REQUIRED" />
            <tx:method name="find*" read-only="true" propagation="REQUIRED" />
            <tx:method name="save*" propagation="REQUIRED"  rollback-for="Exception"/>
            <tx:method name="update*" propagation="REQUIRED"  rollback-for="Exception"/>
            <tx:method name="add*" propagation="REQUIRED"  rollback-for="Exception"/>
            <tx:method name="delete*" propagation="REQUIRED" rollback-for="Exception" />
        </tx:attributes>
    </tx:advice>
    
    <aop:config>
        <aop:pointcut id="baseServiceMethods" expression="execution(* com.myland.demo.service.*.*(..))" />
        <aop:advisor advice-ref="txAdvice" pointcut-ref="baseServiceMethods" />
    </aop:config>
	
	<aop:aspectj-autoproxy proxy-target-class="true"/> 


    
	<!-- 事务处理  end -->
	
	<bean id="druid-stat-interceptor" class="com.alibaba.druid.support.spring.stat.DruidStatInterceptor">
    </bean>
    <bean id="druid-stat-pointcut" class="org.springframework.aop.support.JdkRegexpMethodPointcut" scope="prototype">
        <property name="patterns">
            <list>
                <value>com.myland..Service.*</value>
            </list>
        </property>
    </bean>
    <aop:config>
        <aop:advisor advice-ref="druid-stat-interceptor" pointcut-ref="druid-stat-pointcut" />
    </aop:config>
	

	
</beans>

 springmvc-servlet.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:context="http://www.springframework.org/schema/context"
    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-3.0.xsd
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-3.0.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop-3.0.xsd"  default-autowire="byName">

    <context:component-scan base-package="com.myland.*" >
    	
    </context:component-scan>
    <mvc:annotation-driven />
    <!-- 必须添加否则拦截器不管作用 -->
    <aop:aspectj-autoproxy proxy-target-class="true" />
   	<bean id="OperLogInterceptor" class="com.myland.framework.log.OperLogInterceptor"></bean>
    
    <!-- 视图解析器 -->
    <bean id="viewResolver"
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="viewClass"
            value="org.springframework.web.servlet.view.JstlView"></property>
        <property name="prefix" value="/WEB-INF/views/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>

</beans>

 以上是工程中原有spring配置文件。在测试事务时,事务不能回滚。原因是applicationContext.xml是主容器在扫描类中service,发现service进行事务处理。在主容器初始化后,springmvc-servlet在进行一次扫描,这次扫描是@Controller的注解bean,但是@service的bean只是作为普通bean进行处理,不进行事务处理。所有spring容器装载service的bean只是作为普通bean使用。

确认事务无法回滚的几个问题。

1.确认mysql表类型innodb类型

2.确认配置文件配置是否正确,包括:service中路径正确

3.在配置注解扫描时,主容器只扫描@service,mvc容器值扫描@controller的注解。

主容器

<context:component-scan base-package="com.myland.*" >
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller" />
    </context:component-scan>

mvc容器

<context:component-scan base-package="com.myland.*" >
        <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" />
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" />
    </context:component-scan>

 

 

分享到:
评论

相关推荐

    Spring+SpringMVC+Mybatis框架搭建(含事务管理)

    如果方法执行过程中发生异常,Spring会自动回滚事务;如果没有异常,则在方法结束后提交事务。这种方式极大地提高了代码的可维护性和事务处理的准确性。 **整合SSM**: 整合SSM框架涉及到多个步骤: 1. 引入相关...

    springmvc_mybatis3.01.zip_SpringMVC事务_漏洞

    在"springmvc_mybatis3.01.zip"压缩包中,包含了一个SpringMVC与MyBatis 3.01集成的实例,同时也涉及到了事务管理和安全漏洞的相关知识。 1. **SpringMVC与MyBatis集成** - **配置集成**:SpringMVC通过配置Spring...

    SpringMVC_Mybatis环境搭建

    SpringMVC和Mybatis是Java Web开发中两个非常重要的框架,它们组合在一起形成的SSM(Spring、SpringMVC、Mybatis)架构是企业级应用的常用选择。本环境搭建过程旨在帮助开发者快速创建一个功能完备的SSM项目,以便...

    SpringMVC中文教程

    SpringMVC还支持事务管理,这是为了保证在操作数据库时能够完成一系列的操作或者在遇到错误时回滚到操作前的状态,从而保持数据的一致性。 为了能够更好的理解和运用SpringMVC,文档的作者建议读者反馈发现的问题和...

    SpringMVC+Spring+Hibernate(SSH)框架搭建之二

    本教程将深入探讨如何构建一个基于SpringMVC、Spring和Hibernate的完整应用程序,这是SSH框架搭建的第二步,重点在于搭建Hibernate部分并进行测试。 首先,Hibernate是一个对象关系映射(ORM)框架,它简化了Java...

    基于Spring、SpringMVC、Mybatis、Atomikos集成框架,用于快速搭建跨数据库.zip

    本项目所提及的“基于Spring、SpringMVC、Mybatis、Atomikos集成框架”就是一个这样的解决方案,它旨在帮助开发人员快速搭建支持多数据库环境的应用。下面将详细介绍这些组件及其在项目中的作用。 1. **Spring框架*...

    SpringMVC登陆WebApplication

    在这个实例中,我们看到一个基于SpringMVC的登录程序的实现,它利用了Spring的一些核心特性,包括事务管理(transactionManager)和单元测试支持(Junit)。下面我们将深入探讨这些关键知识点。 **1. SpringMVC** ...

    springmvc_mybatis集成干净框架

    5. **配置事务管理**:在 Spring 配置文件中开启事务管理,并指定事务的回滚规则。 6. **整合测试**:编写 Controller 类,通过 @Autowired 注解注入 Service 和 Mapper,进行业务逻辑处理。 一个干净的 SpringMVC+...

    JAVA SpringMVC+mybatis

    综上所述,该案例不仅涵盖了SpringMVC、MyBatis等核心框架的应用,还涉及了数据库连接池、事务管理以及一系列实用工具和技术点的使用,对于希望快速搭建高性能Web应用的开发者来说具有很高的参考价值。

    SpringMVC+MyBatis整合框架

    3. 良好的事务管理:Spring可以统一管理事务,提供不同级别的事务隔离和回滚策略。 通过`ssm-demo`这个项目,你可以学习到如何从零开始搭建SpringMVC+MyBatis的整合项目,包括项目的目录结构、配置文件、实体类、...

    spring+springMVC+Mybatis

    在IT行业中,Spring、SpringMVC和Mybatis是三大核心框架,它们的组合常用于构建高效、可维护的企业级Web应用程序。本篇文章将详细介绍这三个框架的集成与使用,旨在搭建一个基础的Demo,以供技术交流。 首先,...

    ssm-web-tx-SSM文档.zip

    编程式事务管理需要在代码中显式调用开始事务、提交事务或回滚事务的方法,而声明式事务管理通过在服务方法上添加@Transactional注解来声明事务边界,更加便捷且不易出错。在SSM项目中,通常推荐使用声明式事务管理...

    springmvc3+spring+mybatis3整合项目 注解实现

    声明式事务管理更简洁,只需在需要事务的方法上添加@Transactional注解,Spring会自动进行事务的开启、提交或回滚。 数据库文件的提供意味着项目包含了创建和初始化数据库的脚本,这有助于快速搭建环境并进行数据...

    SpringMVC精品资源--手把手教你整合最优雅SSM框架:SpringMVC + Spring + MyBatis.zip

    SpringMVC、Spring和MyBatis是Java Web开发中非常流行的三大框架,它们共同构建了SSM(Spring MVC + Spring + MyBatis)框架体系,为开发者提供了强大的后端服务支持。下面将详细介绍这三个框架的核心概念、整合过程...

    小系统环境搭建总结

    在搭建过程中,可能会遇到如依赖冲突、配置错误、运行时异常等问题。解决这些问题通常需要理解各个组件的工作原理,阅读官方文档,以及利用搜索引擎和社区资源。例如,对于依赖冲突,Maven的Dependency Management...

    经典的ssm框架,

    事务增强则是通过自定义AOP切面来实现,例如在异常发生时回滚事务,或者在特定条件下提交事务。 纯净搭建SSM框架意味着不引入额外的库或依赖,只保留SSM的核心功能。这通常涉及到以下步骤: 1. 创建项目结构:包括...

    搭建spring mvc+spring+ibatis所需所有jar包

    3. **事务控制**:通常在Service层使用@Transactional注解进行事务控制,Spring会自动管理事务的开启、提交和回滚。 4. **异常处理**:在Controller层捕获并处理可能抛出的异常,确保正常响应。 这些jar包的集合...

    SSMP:用SpringMVC集成的MP +简单的代码生成+ MP分页插件+事务管理+阿里数据源

    Spring 提供的事务管理器可以方便地控制事务的边界,无论是编程式事务管理还是声明式事务管理,都能有效地处理事务的提交、回滚和传播规则。 最后,阿里巴巴的数据源组件为 SSMP 提供了高性能、高可用的数据源管理...

    jpa+springmvc

    当使用JPA时,Spring会自动处理事务的开始、提交、回滚等操作,无需手动编写大量的事务管理代码。 在使用JPA时,我们通常会创建一些基本的Repository接口,这些接口继承自JPA提供的`JpaRepository`或`...

    idea+maven+ssm

    5. **事务管理**:在SSM中,Spring提供了声明式事务管理,开发者可以在服务层方法上添加@Transactional注解,由Spring自动管理事务的开始、提交或回滚。这简化了事务处理,提高了代码可读性。 6. **分页**:在大...

Global site tag (gtag.js) - Google Analytics