IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> SSM整合时Spring事务失效及异常处理配置 -> 正文阅读

[Java知识库]SSM整合时Spring事务失效及异常处理配置

出现问题的原因:

????????spring容器作为springmvc的父容器,使用注解配置spring和springmvc的时。如果spring mvc扫描了service和dao层就会将bean纳入自己的管理范围,spring作为父容器是访问不到的,反过来是可以的。一旦出现这样的问题就会导致spring的事务管理失效!

???????? 需要注意:

? ? ? ? ? ? ? ? 一定要将mvc层与service和dao层分开,所以Controller层的bean管理由SpringMvc管理Service和Dao层由Spring管理。那么在扫描时SparingMcv的配置文件需要格外精确扫描的包,并使用<context:include-filter/>标签限定。

? ? ? ? ? ? ? ? 而Spring的配置文件在做组件扫描配置时,要排除Controller层。使用<context:exclude-filter/>标签来排除不需要扫描的组件。

在配置事务处理时添加 int i = 1/0 来进行测试

????????1.Service层转账逻辑:

    //原始代码    
    @Override
    public void transfer(int source, int target, double money) throws MyException {
        try {
            User sou = userDao.findById(source);
            User tar = userDao.findById(target);

            sou.setMoney(sou.getMoney() - money);
            tar.setMoney(tar.getMoney() + money);

            userDao.updateUser(sou);
            int i = 1/0;
            userDao.updateUser(tar);
        }catch (Exception e){
            e.printStackTrace();
            throw new MyException("转账失败");
        }
    }    

    
    //修改后的代码
    @Override
    public void transfer(int source, int target, double money) {
        User sou = userDao.findById(source);
        User tar = userDao.findById(target);

        sou.setMoney(sou.getMoney() - money);
        tar.setMoney(tar.getMoney() + money);

        userDao.updateUser(sou);
        int i = 1/0;//出现异常
        userDao.updateUser(tar);
    }

????????????????service层,在转账的操作中int i = 1/0;运行时出现异常,导致客户端页面报错,这样是不友好的,所以,我自定义了异常类,并编写了异常处理器解析器,想友好的处理异常并实现事务的有效控制,但是事与愿违,在service层捕获异常,并抛到Controller层,虽然在客户端看来异常确实友好了,但是事务的控制又失效了。

? ? ? ? 所以我做了改进,仍保留异常处理机制,将异常的捕获放在了Controller层,问题得到了解决。

2.Controller层的处理代码:

    @RequestMapping(path = "/transfer")
    public String transfer(@RequestParam("sou") int source,
                           @RequestParam("tar") int target, 
                           @RequestParam("money") double money, 
                           Model model) throws MyException {
        try {
            userService.transfer(source,target,money);
            model.addAttribute("user",userService.findAll());
            return "success";
        }catch (Exception e){
            e.printStackTrace();
            throw new MyException("transfer执行异常");
        }

    }

????????????????自定义的异常处理器解析器:处理自下而生的异常,防止客户端直接报错

@Component
public class ExceptionProcessor implements HandlerExceptionResolver {

    private MyException myException;

    @Override
    public ModelAndView resolveException(HttpServletRequest request, 
                                        HttpServletResponse response, 
                                        Object handler, 
                                        Exception ex) {
        if(ex instanceof MyException){
            myException = (MyException) ex;
        }
        ModelAndView mv = new ModelAndView();
        mv.addObject("exp",myException.getMessage());
        mv.setViewName("error");
        return mv;
    }
}

SSM整合是配置如下

? ? ? ? 1.spring的配置文件:

<?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"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        https://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/tx
        https://www.springframework.org/schema/tx/spring-tx.xsd
        http://www.springframework.org/schema/aop
        https://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/mvc
        https://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <context:property-placeholder location="classpath:jdbcConfig.properties"/>

    <!--开启注解扫描,希望处理service和dao,controller不需要spring框架处理-->
    <context:component-scan base-package="com.kali">
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>

    <!--这个配置完成后sqlMapConfig.xml就可以删除了-->

    <!--spring整合Mybatis-->
    <!--配置连接池-->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="${jdbc.driver}"/>
        <property name="jdbcUrl" value="${jdbc.url}"/>
        <property name="user" value="${jdbc.username}"/>
        <property name="password" value="${jdbc.password}"/>

        <!--<property name="driverClass" value="com.mysql.jdbc.Driver"/>
        <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/ssm"/>
        <property name="user" value="root"/>
        <property name="password" value="super"/>-->
    </bean>

    <!--<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="${jdbc.driver}"/>
        <property name="url" value="${jdbc.url}"/>
        <property name="username" value="${jdbc.username}"/>
        <property name="password" value="${jdbc.password}"/>
    </bean>-->

    <!--配置SqlSessionFactory工厂-->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource"/>
    </bean>

    <!--配置接口所在的包,将为其创建对象-->
    <bean id="mapperScanner" class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="basePackage" value="com.kali.dao"/>
    </bean>

    <!--spring声明式事务-->
    <!--<tx:annotation-driven/>-->

    <!--配置事务管理器-->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"/>
    </bean>

    <!--配置通知-->
    <tx:advice id="conAdvice" transaction-manager="transactionManager">
        <tx:attributes>
            <tx:method name="find*" read-only="true"/>
            <tx:method name="*" propagation="REQUIRED"/>
        </tx:attributes>
    </tx:advice>
    <!--配置切面-->
    <aop:config>
        <aop:pointcut id="pt" expression="execution(* com.kali.service.impl.ServiceImpl.*(..))"/>
        <aop:advisor advice-ref="conAdvice" pointcut-ref="pt"/>
    </aop:config>

    <aop:aspectj-autoproxy/>

</beans>

????????2.spring mvc的配置文件:

<?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:tx="http://www.springframework.org/schema/tx"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        https://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/tx
        https://www.springframework.org/schema/tx/spring-tx.xsd
        http://www.springframework.org/schema/mvc
        https://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/aop
        https://www.springframework.org/schema/aop/spring-aop.xsd">

    <!--开启注解扫描,只处理Controller-->
    <context:component-scan base-package="com.kali.controller"/>

    <!--<context:component-scan base-package="com.kali.controller"/>-->

    <!--开启spring mvc注解支持-->
    <mvc:annotation-driven/>

    <!--配置视图解析器-->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/pages/"/>
        <property name="suffix" value=".jsp"/>
    </bean>

    <!--过滤静态资源-->
    <mvc:resources mapping="/js/**" location="/WEB-INF/js/"/>
    <mvc:resources mapping="/css/**" location="/WEB-INF/css/"/>
    <mvc:resources mapping="/images/**" location="/WEB-INF/images/"/>

</beans>

? ? ? ? 3.web.xml配置:

<!DOCTYPE web-app PUBLIC
 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 "http://java.sun.com/dtd/web-app_2_3.dtd" >

<web-app>
  <display-name>Archetype Created Web Application</display-name>

  <!--设置文件路径-->
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:spring.xml</param-value>
  </context-param>

  <!--解决中文乱码-->
  <filter>
    <filter-name>encodingFilter</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <init-param>
      <param-name>encoding</param-name>
      <param-value>UTF-8</param-value>
    </init-param>
  </filter>
  <filter-mapping>
    <filter-name>encodingFilter</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>

  <!--配置spring的监听器,默认只加载WEB-INF目录下的applicationContext.xml配置文件-->
  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>

  <servlet>
    <servlet-name>dispatcherServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:springmvc.xml</param-value>
    </init-param>
    <!--启动服务器创建Servlet-->
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>dispatcherServlet</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>

</web-app>

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2021-10-26 12:05:05  更:2021-10-26 12:06:43 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 0:03:38-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码