Spring 和 Mybatis整合

最近闲来无事应朋友只需,整理了一下以前学习Spring框架和 Mybatis 框架的一些资料,自己写了一个小的单表增删查改的 dome.
在写之前需要需要下载好Spring的jar包和 Mybatis的 jar包,在 Mysql 建一个 tb_user 的单表.
下面是工程的一个包结构:

文件结构.png

db.properties文件内容
##oracle 和 mysql 你使用其中一个即可,根据自己的账号密码填写
##oracle
##url=jdbc:oracle:thin:@localhost:1521:orcl
##user=scott
##pwd=12345
##driver=oracle.jdbc.OracleDriver

##mysql
driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/test
user=root
pwd=root

实体类 User类

public class User {
      
private Integer id;
private String name;
private String password;
private int age;
public Integer getId() {
    return id;
}
public void setId(Integer id) {
    this.id = id;
}
public String getName() {
    return name;
}
public void setName(String name) {
    this.name = name;
}
public String getPassword() {
    return password;
}
public void setPassword(String password) {
    this.password = password;
}
public int getAge() {
    return age;
}
public void setAge(int age) {
    this.age = age;
}

}

Usermapper接口类

public interface UserMapper {
/**
 * 新增数据
 *@param user
 */
int insertUser(User user);
/**
 * 更新数据
 *@param user
 */
int updateUser(User user);
 /**
 *  删除数据
 *@param user
 */
int deleteUser(User user);
/**
 * 根据name 查询
 *@param name
 */
List<User> getUserByName(String name);

}

业务层 service 的 UserService 接口

public interface UserService {
 /**
 *注册
 *@param name
 */
public void register(User user); 
 /**
 * 通过姓名查询用户
 *@param name
 */
public List<User> getUserByName(String name);
 /**
 * 修改用户
 *@param name
 */
void modifyUser(User user);
 /**
 * 根据id用户
 *@param name
 */
void dropUser(Integer id);

}

UserServiceImpl是 UserService 的实现类

@Service // spring容器管理对象 Spring 的注解开发
public class UserServiceImpl implements UserService {

@Autowired
private UserMapper userMapper;

@Override
public void register(User user) {
    userMapper.insertUser(user);
}

@Override
public List<User> getUserByName(String name) {
    return this.userMapper.getUserByName(name);
}

@Override
public void modifyUser(User user) {
    this.userMapper.updateUser(user);
}

@Override
public void dropUser(Integer id) {
    User user = new User();
    user.setId(id);
    this.userMapper.deleteUser(user);
}
}

applicationContext-base.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"  
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd"
>

<!-- 配置文件描述标签 -->
<description>
    <![CDATA[
        描述内容. 配置Spring整合MyBatis技术中的基础数据
        如 : 数据源
    ]]>
</description>

<!-- 使用spring的技术,读取properties配置文件. -->
<bean id="placeholder" 
    class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="locations">
        <array>
            <value>classpath:cn/sxt/config/commons/db.properties</value>
        </array>
    </property>
</bean>

<!-- 数据源, 如果spring容器读取了properties配置文件内容. 那么可以通过springEL表达式中的${key}
    访问properties配置文件的value
 -->
<bean id="dataSource" 
    class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="driverClassName" value="${driver}" />
    <property name="url" value="${url}" />
    <property name="username" value="${user}" />
    <property name="password" value="${pwd}" />
</bean>
<!-- 数据源, 如果不写配置文件就直接一一对应上也行
 -->
</beans>

applicationContext-mybatis.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"  
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd"
>

<!-- 配置文件描述标签 -->
<description>
    <![CDATA[
        描述内容. 配置MyBatis中SqlSessionFactory的配置文件.
    ]]>
</description>

<!-- 配置SqlSessionFactory. 导入了一个mybatis-spring-x.x.x.jar
    在jar包中,定义了spring和mybatis整合相关的类型.
 -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
    <property name="dataSource" ref="dataSource"></property>
    <property name="mapperLocations">
        <array>
            <!-- 导入目录cn/sxt/mapper/中的所有xml配置文件. -->
            <value>classpath:cn/sxt/mapper/*.xml</value>
        </array>
    </property>
    <property name="typeAliasesPackage">
        <value>cn.sxt.entity</value>
    </property>
</bean>

<!-- 第二种配置方案
    自动扫描basePackage中的接口和XML配置文件.实现动态代理对象的创建.
    相当于MapperFactoryBean的简写.
 -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
    <property name="basePackage" value="cn.sxt.mapper"></property>
    <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
</bean>

<!-- 第一种配置方案 -->
<!-- <bean id="baseMapper" class="org.mybatis.spring.mapper.MapperFactoryBean" 
    abstract="true" lazy-init="true">
    <property name="sqlSessionFactory" ref="sqlSessionFactory" />
</bean>

<bean id="userMapper" parent="baseMapper">
    <property name="mapperInterface" value="cn.sxt.mapper.UserMapper" />
</bean> -->

</beans>

applicationContext-service.xml

 <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"  
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd"
>

<!-- 配置文件描述标签 -->
<description>
    <![CDATA[
        描述内容. 配置扫描Service的标签
    ]]>
</description>
    <!-- 扫描包 -->
<context:component-scan base-package="cn.sxt.service" />
</beans>

applicationContext-tx.xml

  <?xml version="1.0" encoding="UTF-8"?>
  <beans xmlns="http://www.springframework.org/schema/beans"    
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx.xsd"
>

<!-- 配置文件描述标签 -->
<description>
    <![CDATA[
        描述内容. 配置事务管理,声明式事务管理.
    ]]>
</description>

<!-- 配置一个事务管理器.是一个Spring定义好的java类.
    MyBatis是一个轻量级封装的框架.封装的级别比较轻.层次少.对JDBC的封装少.
    MyBatis框架对事务管理,都是借助JDBC实现的.
    使用的事务管理器,就是DataSourceTransactionManager.
 -->
<bean id="transactionManager" 
    class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="dataSource" ref="dataSource"></property>
</bean>

<!-- 定义一套通知,实现事务的细粒度管理. -->
<tx:advice transaction-manager="transactionManager" id="txAdvice">
    <!-- 配置事务管理通知属性. -->
    <tx:attributes>
        <tx:method name="register" isolation="DEFAULT" propagation="REQUIRED"
            rollback-for="java.lang.Exception"/>
        <tx:method name="getUserByName" read-only="true"/>
        <tx:method name="save*" isolation="DEFAULT" propagation="REQUIRED"
            rollback-for="java.lang.Exception"/>
        <tx:method name="update*" isolation="DEFAULT" propagation="REQUIRED"
            rollback-for="java.lang.Exception"/>
        <tx:method name="delete*" isolation="DEFAULT" propagation="REQUIRED"
            rollback-for="java.lang.Exception"/>
        <tx:method name="get*" read-only="true"/>
        <tx:method name="*" isolation="DEFAULT" propagation="REQUIRED"
            rollback-for="java.lang.Exception"/>
    </tx:attributes>
</tx:advice>

<!-- 配置切面 -->
<aop:config>
    <aop:advisor advice-ref="txAdvice" 
        pointcut="execution(* cn.sxt.service.*.*(..))"/>
</aop:config>

</beans>

UserMapper.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="cn.sxt.mapper.UserMapper">

<!-- 增加一个新的属性.可选属性.
    parameterType - 可选属性. 用来明确定义,当前方法的输入参数具体类型是什么.
        常用配置为 : 自定义类型,Map集合类型,简单类型.
 -->
<insert id="insertUser" parameterType="cn.sxt.entity.User">
    insert into tb_user (id, name, password, age)
        values(seq_user.nextVal, #{name}, #{password}, #{age})
</insert>

<!-- 更新数据 -->
<update id="updateUser">
    update tb_user
        <!-- set标签. 动态设置set语法结构.可以自动删除最后一个逗号.类似where标签的功能. -->
        <set>
            <if test="name != null">
            name = #{name},
            </if>
            <if test="password != null">
            password = #{password},
            </if>
            <if test="age != 0">
            age = #{age},
            </if>
        </set>
        <where>
            <if test="id != null">
            and id = #{id}
            </if>
        </where>
</update>
 <!-- 删除数据 -->
<delete id="deleteUser">
    delete from tb_user
        where id = #{id}
</delete>
<!-- 同构 id 查找数据 -->
<select id="getUserByName" resultType="User">
    select id, name, password, age
        from tb_user
        where name = #{name}
</select>

</mapper>

接下来我们做测试,建一个测试类,到如一个 JUnit jar包
也可以用 main 做测试也行,测试就不详细说了.看代码.

public class TestSpringMyBatis {

@Test
public void testUpdate(){
    ApplicationContext context = 
            new ClassPathXmlApplicationContext("classpath:cn/lx/configurations/spring/applicationContext-*.xml");
    
    UserService userService = context.getBean(UserService.class);
    
    User user = new User();
    user.setId(3);
    user.setName("老宋");
    
    userService.modifyUser(user);
}

@Test
public void testInsert(){
    ApplicationContext context = 
            new ClassPathXmlApplicationContext("classpath:cn/lx/configurations/spring/applicationContext-*.xml");
    
    UserService userService = context.getBean(UserService.class);
    
    User user = new User();
    user.setName("天王");
    user.setPassword("xoxo");
    user.setAge(18);
    
    userService.register(user);
}

@Test
public void testService(){
    ApplicationContext context = 
            new ClassPathXmlApplicationContext("classpath:cn/lx/configurations/spring/applicationContext-*.xml");
    
    UserService userService = context.getBean(UserService.class);
    
    System.out.println(userService.getClass().getName());
    
    List<User> users = userService.getUserByName("老王");
    for(User u : users){
        System.out.println(u.getId() + " ; " + u.getName());
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,634评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,951评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,427评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,770评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,835评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,799评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,768评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,544评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,979评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,271评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,427评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,121评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,756评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,375评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,579评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,410评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,315评论 2 352

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,649评论 18 139
  • Spring Boot 参考指南 介绍 转载自:https://www.gitbook.com/book/qbgb...
    毛宇鹏阅读 46,801评论 6 342
  • 一定要下载源码自己去琢磨,自己配置一遍 GitHub下载这个工程 谈到SSM,我在网上看了很多整合教程,我也跟着一...
    伽娃程序猿阅读 4,004评论 0 14
  • 整合思路 需要spring通过单利方式管理sqlSessionFactoryspring和mybatis整合生成代...
    Stringer阅读 200评论 0 0
  • 爸爸:我要上班了,宝宝拜拜 宝宝:爸爸拜拜(关上门快速跑到窗台上打开窗户) 宝宝:(看到刚出单元门的爸爸大声喊)爸...
    月月妈妈阅读 145评论 0 0