自己准备开始教授Java相关的技术,Spring框架是必须让学生学习的框架之一。里面有一个事务相关的

配置,以前刚学习Spring框架的时候有接触过,只是过了很多年,很多东西都已经淡忘。再来回忆一下

如何使用Spring框架配置事务。

使用到的maven坐标如下:

<dependencies>
    <!-- mybatis的依赖支持 -->
    <dependency>
        <groupId>org.mybatis</groupId>
        <artifactId>mybatis</artifactId>
        <version>3.5.6</version>
    </dependency>

    <!-- mysql 驱动依赖 -->
    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>8.0.33</version>
    </dependency>

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>5.3.27</version>
    </dependency>

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-jdbc</artifactId>
        <version>5.3.27</version>
    </dependency>

    <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis-spring -->
    <dependency>
        <groupId>org.mybatis</groupId>
        <artifactId>mybatis-spring</artifactId>
        <version>1.3.3</version>
    </dependency>

    <dependency>
        <groupId>com.alibaba</groupId>
        <artifactId>druid</artifactId>
        <version>1.2.18</version>
    </dependency>

    <dependency>
        <groupId>org.aspectj</groupId>
        <artifactId>aspectjweaver</artifactId>
        <version>1.9.7</version>
    </dependency>
</dependencies>

导入的jar包主要有mybatis,mysql驱动,spring相关的jar包,还有mysql连接池的jar包等等。

然后创建一个简单的工程,整个项目的结构大致如下,

测试类里面的代码为:

public class TestApplication {

    public static void main(String[] args) {
        ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");

        CatService catService =(CatService ) ctx.getBean("catService");

        catService.updateCat("西西",1);
        System.out.println("执行完毕!");
    }
}

主要作用是加载Spring的配置类的xml文件,然后获取service类,最后调用service里面的方法来更新数据。

service实现类中的代码为:

public class CatServiceImpl implements CatService {

    private CatDao catDao;

    public void setCatDao(CatDao catDao) {
        this.catDao = catDao;
    }

    @Override
    public int updateCat(String catName, int id) {
        int result = this.catDao.updateCat(catName, id);

        int temp = 10 / 0;

        result = this.catDao.deleteCat(id + 1);
        return result;
    }
}

这里面主要就是注入一个CatDao接口,注意这里必须有setCatDao方法,不然程序也会报错。这个类中只

写了一个方法updateCat,方法中第一步操作是根据ID更新名称;第二步操作是手动产生一个异常,方式为

使用10/0即可,用来测试事务是否正确回滚;第三步就是根据ID逻辑删除一条数据。

dao接口中的代码为:

public interface CatDao {

    int updateCat(@Param("catName") String catName, @Param("id")int id);

    int deleteCat(@Param("id")int id);
}

一个修改的方法,一个删除的方法。

CatDao.xml中的代码为:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="com.cat.dao.CatDao">

   <update id="updateCat">
    update cat set cat_name = #{catName, jdbcType = VARCHAR}
    where
    id =  #{id, jdbcType=INTEGER}
   </update>

    <update id="deleteCat" parameterType="int">
    update cat set is_delete = 1
    where
    id =  #{id, jdbcType = INTEGER}
   </update>
</mapper>

一个是修改的方法,一个是逻辑删除的方法。

application.properties配置文件中的配置信息为,主要是数据库连接信息.

driver=com.mysql.cj.jdbc.Driver

url=jdbc:mysql://127.0.0.1:3306/test

name=root

password=root

applicationContext.xml配置文件中的信息为.

<!--引入资源文件-->
<context:property-placeholder location="classpath*:*.properties"/>

<!--创建 druid 连接池对象,dataSource-->
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" >
    <property name="driverClassName" value="${driver}"/>
    <property name="url" value="${url}"/>
    <property name="username" value="${name}"/>
    <property name="password" value="${password}"/>
</bean>
<!--创建了 sessionFactory对象,用来代替 mybatis中的连接数据库-->
<bean  class="org.mybatis.spring.SqlSessionFactoryBean" >
    <property name="dataSource" ref="dataSource" />
</bean>

<!--映射试下类,mapper-->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
    <!--扫描 dao包中的 映射文件,并且 将每个映射文件实例化了一个对象 对相名就是 文件名,开头字母小写-->
    <property name="basePackage" value="com.cat.dao"/>
</bean>

<!--业务层-->
<bean id="catService" class="com.cat.service.impl.CatServiceImpl" >
    <property name="catDao" ref="catDao"/>
</bean>

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

<!-- 配置事务增强 -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
    <!-- 事务属性 -->
    <tx:attributes>
        <tx:method name="*"/>
        <tx:method name="get*" read-only="true"/>
        <tx:method name="find*" read-only="true"/>
        <tx:method name="list*" read-only="true"/>

        <!--增删改 -->
        <tx:method name="insert*" timeout="5000" rollback-for="java.lang.Exception"/>
        <tx:method name="add*" timeout="5000"/>
        <tx:method name="update*" timeout="5000"/>
        <tx:method name="delete*" timeout="5000"/>
    </tx:attributes>
</tx:advice>

<aop:config>
    <!-- 错误配置方式 -->
    <!--<aop:advisor advice-ref="txAdvice" pointcut="execution(* com.service.impl.CatServiceImpl.*.*(..))"/>-->

    <!-- 正确配置方式 -->
    <aop:advisor advice-ref="txAdvice" pointcut="execution(* com.cat.service.impl.CatServiceImpl.*(..))"/>
</aop:config>

遇到的问题一:dao接口和xml文件不在同一个目录下!因此程序在执行的时候,就会报错,

Exception in thread "main" org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.cat.dao.CatDao.updateCat

导致这个问题的原因是,自己在创建xml的包路径时,是直接复制、粘贴com.cat.dao,导致创建的

包名错误。找到项目的根目录查看,如下

因此创建包名的时候,最好是一级一级的创建,直接复制、粘贴就可能会出现问题。

上面的是正确的包名,下面的是错误的包名,凭肉眼看是很难发现错误的,因此在创建

包名的时候一定要注意!

遇到的问题二:CatServiceImpl中注入CatDao的时候,catDao没有手动添加setCatDao方法

时,就会报如下的错误,大致意思就是说没有有效的catDao的set方法。

Error setting property values; nested exception is org.springframework.beans.NotWritablePropertyException: Invalid property 'catDao' of bean class [com.cat.service.impl.CatServiceImpl]: Bean property 'catDao' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?

解决方式:添加CatDao成员变量的set方法即可。

遇到的问题三:

dao接口里面的代码

public interface CatDao {

    int updateCat(@Param("catName") String catName, @Param("id")int id);

    int deleteCat(@Param("id")int id);
}

xml里面的代码

<update id="updateCat" parameterType="string">
 update cat set cat_name = #{catName, jdbcType = VARCHAR}
 where
 id =  #{id, jdbcType=INTEGER}
</update>

由于在xml里面设置了parameterType=”string”,因此传入的参数必须为string类型。而自己传入的是

int类型,所以又报一个新的错误如下:

Error setting non null for parameter #2 with JdbcType INTEGER . Try setting a different JdbcType for this parameter or a different configuration property. Cause: java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String

解决方式为:去除掉这个设置即可parameterType=”string”,就可以传递任意类型的参数。

遇到的问题四:

切入点的配置方式错误,com.cat.service.impl.CatServiceImpl.*.*(..)这个路径是自己从一篇博文中拷贝的,没有做修改最终导致路径错误

<aop:config>

<!-- 错误配置方式 -->

<!--<aop:advisor advice-ref="txAdvice" pointcut="execution(* com.cat.service.impl.CatServiceImpl.*.*(..))"/>-->

<!-- 正确配置方式 -->

<aop:advisor advice-ref="txAdvice" pointcut="execution(* com.cat.service.impl.CatServiceImpl.*(..))"/>

</aop:config>

解决方式:配置为正确的路径 com.cat.service.impl.CatServiceImpl.*(..)即可.区别就在于.*.*还是.*

测试

测试前的数据库数据为

报错信息如下,10 / 0出现错误:

再次查看数据库数据,数据没改变,事务生效。

参考博文

https://www.cnblogs.com/juyss/p/13786370.html

Spring整合mybatis使用xml配置事务的更多相关文章

  1. spring整合mybatis是如何配置事务的?

    作者:郭无心链接:https://www.zhihu.com/question/30206875/answer/84675373来源:知乎著作权归作者所有.商业转载请联系作者获得授权,非商业转载请注明 ...

  2. SpringBoot系列-整合Mybatis(XML配置方式)

    目录 一.什么是 MyBatis? 二.整合方式 三.实战 四.测试 本文介绍下SpringBoot整合Mybatis(XML配置方式)的过程. 一.什么是 MyBatis? MyBatis 是一款优 ...

  3. SpringBoot 整合 Mybatis + Mysql——XML配置方式

    一.介绍 SpringBoot有两种方法与数据库建立连接,一种是集成Mybatis,另一种用JdbcTemplate,本文主要讨论集成Mybatis方式. SpringBoot整合Mybatis也有两 ...

  4. SpringBoot整合MyBatis之xml配置

    现在业界比较流行的数据操作层框架 MyBatis,下面就讲解下 Springboot 如何整合 MyBatis,这里使用的是xml配置SQL而不是用注解.主要是 SQL 和业务代码应该隔离,方便和 D ...

  5. spring整合mybatis二种配置

    第一种: <!-- 配置sqlsession --> <bean id="sqlsessionFactory" class="org.mybatis.s ...

  6. spring整合mybatis,ioc容器及声明式事务配置

    步骤: 1.创建jdbc.properties文件,用来管理存放连接数据库的相关信息 jdbc.properties:jdbc.user=root jdbc.password=123456 jdbc. ...

  7. spring整合mybatis(hibernate)配置

    一.Spring整合配置Mybatis spring整合mybatis可以不需要mybatis-config.xml配置文件,直接通过spring配置文件一步到位.一般需要具备如下几个基本配置. 1. ...

  8. spring基础:什么是框架,框架优势,spring优势,耦合内聚,什么是Ioc,IOC配置,set注入,第三方资源配置,综合案例spring整合mybatis实现

    知识点梳理 课堂讲义 1)Spring简介 1.1)什么是框架 源自于建筑学,隶属土木工程,后发展到软件工程领域 软件工程中框架的特点: 经过验证 具有一定功能 半成品 1.2)框架的优势 提高开发效 ...

  9. spring整合mybatis错误:class path resource [config/spring/springmvc.xml] cannot be opened because it does not exist

    spring 整合Mybatis 运行环境:jdk1.7.0_17+tomcat 7 + spring:3.2.0 +mybatis:3.2.7+ eclipse 错误:class path reso ...

  10. spring 整合 mybatis 中数据源的几种配置方式

    因为spring 整合mybatis的过程中, 有好几种整合方式,尤其是数据源那块,经常看到不一样的配置方式,总感觉有点乱,所以今天有空总结下. 一.采用org.mybatis.spring.mapp ...

随机推荐

  1. 【四】多智能体强化学习(MARL)近年研究概览 {Learning cooperation(协作学习)、Agents modeling agents(智能体建模)}

    相关文章: [一]最新多智能体强化学习方法[总结] [二]最新多智能体强化学习文章如何查阅{顶会:AAAI. ICML } [三]多智能体强化学习(MARL)近年研究概览 {Analysis of e ...

  2. Linux的用户和权限 [补档-2023-07-07]

    Linux用户和权限 3-1. su用户切换命令 exit用户退出命令 ​ 用户切换命令的语法: ​ su [-] [用户名] ​ 其中: ​ - 可选,表示是否在切换用户后加载环境变量,建议带上. ...

  3. scrapy抓取校花网图片

    一:基础版(抓取首页图片) 爬虫py文件代码: 1 # -*- coding: utf-8 -*- 2 import scrapy 3 import sys 4 import io 5 from sc ...

  4. centos编译安装tcpdump

    环境 CentOS Linux release 7.9.2009 (Core) 准备安装包 libpcap-1.5.3.tar.gz tcpdump-4.9.2.tar.gz 下载地址:https:/ ...

  5. 【奶奶看了都会】ChatGPT3.5接入企业微信,可连续对话

    1.连续对话效果 小伙伴们,这周ChatGPT放出大招,开放了GPT3.5的API.说简单点,就是提供了和ChatGPT页面对话一样模型的接口.而之前接的ChatGPT接口都是3.0,并不是真正的Ch ...

  6. CF590C Three States

    题目链接 题目 见链接. 题解 知识点:BFS. 这道题求连接三个国家的最短路径长度.如果枚举每个点进行bfs,显然不可行,换种思路,从三个国家开始分别进行bfs是可以的. 注意一开始初始化两个距离数 ...

  7. windows远程连接centos及闪退异常解决记录

     平时在学校实验室写代码用的环境是linux系统,放假回家之后之后笔记本的性能和系统多少有些不方便,因此使用服务器安装IDEA进行编程,记录一下远程桌面的安装及出现的问题解决. 一. 安装Centos ...

  8. 【分布式】load balance 02-consistent hash algorithm 一致性哈希算法原理详解

    负载均衡系列专题 01-负载均衡基础知识 02-一致性 hash 原理 03-一致性哈希算法 java 实现 04-负载均衡算法 java 实现 概念 一致哈希是一种特殊的哈希算法. 在使用一致哈希算 ...

  9. c2工具sliver的python客户端无法修改grpc超时时间的解决办法

    业务需要,调用了很多implants来执行对应系统上的命令, 但是无论怎么指定interactive.py中execute方法参数, 命令执行超时时间总是30. 后面通过扩展execute方法增加一个 ...

  10. sliver生成木马.sh

    生成sliver木马多个步骤合成一个sh #!/bin/bash # date: 20230222 host_ip=$1 WORK_DIR=/opt/work rm -rf /root/.sliver ...