美文网首页极乐科技SSM架构SpringFramework
SSM框架(一)--Spring和MyBatis整合(详细教程)

SSM框架(一)--Spring和MyBatis整合(详细教程)

作者: 伽娃程序猿 | 来源:发表于2017-01-23 13:46 被阅读870次

一定要下载源码自己去琢磨,自己配置一遍

GitHub下载这个工程

谈到SSM,我在网上看了很多整合教程,我也跟着一起整合过,都有大大小小的问题,所以今天元旦假期,我就抽一上午写出我自己的教程,一是spring和MyBatis的整合,二是加上SpringMVC,即SSM大功告成。

首先我得说一下我的版本(我觉得版本是次要的,只要你弄清楚配置文件的关系,即怎么配置配置文件,什么版本都一样,只是版本最大的问题我觉得是与jdk和tomcat这些有关)
MyBatis 3.2.7 Spring 3.2.0
再给大家数据库吧,我是MySQL,我把sql文件给你们,直接放数据库运行就可以。

SSM框架测试SQL

废话不多说,先谈谈mybatis和spring整合的思路
1、让spring管理SqlSessionFactory2、让spring管理mapper对象和dao。 使用spring和mybatis整合开发mapper代理及原始dao接口。 自动开启事务,自动关闭 sqlsession.3、让spring管理数据源( 数据库连接池)

在eclipse创建Java工程就行(还没到SpringMVC呢)
先看看目录结构图,因为我装了Spring的插件,所以项目会有个S。dao层是为了实现dao和Mapper两种不同的开发,也可以先忽略,config是资源文件夹。

这里写图片描述
加入jar包
在这里就把所有jar包都一次给你,包括SpringMVC的。

mybatis与spring整合全部jar包(包括springmvc)
1、mybatis3.2.7本身的jar包
2、数据库驱动包
3、spring3.2.0
4、spring和mybatis整合包 从mybatis的官方下载spring和mybatis整合包

log4j.properties这个也是Spring依赖的日志文件,大家如果需要自行下载工程查看哈。

重点(配置文件),别急着复制配置文件,因为具体的要看开发情况,先了解一下

SqlMapconfig.xml mybatis配置文件:别名、settings,数据源不在这里配置(因为有了Spring来管理)

<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>

    <!-- 定义 别名 -->
    <typeAliases>
        <!--
        单个别名的定义
        alias:别名,type:别名映射的类型  -->
        <!-- <typeAlias type="com.hust.mybatis.po.User" alias="user"/> -->
        <!-- 批量别名定义
        指定包路径,自动扫描包下边的pojo,定义别名,别名默认为类名(首字母小写或大写)
         -->
        <package name="com.hust.springmybatis.po"/>

    </typeAliases>

    <mappers>
        <!-- 通过resource引用mapper的映射文件 -->
        <mapper resource="sqlmap/User.xml" />
        <mapper resource="mapper/UserMapper.xml" />
    </mappers>

</configuration>

applicationContext.xml
1、数据源(dbcp连接池)(db.properties自行下载工程查看哈,再说这个一般人都会)
2、SqlSessionFactory
3、mapper或dao

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

    <!-- 配置数据源 -->
    <context:property-placeholder location="classpath:db.properties"/>

    <!-- 如果是用额外的配置文件 -->
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
        destroy-method="close">
        <property name="driverClassName" value="${jdbc.driver}"></property>
        <property name="url" value="${jdbc.url}"></property>
        <property name="username" value="${jdbc.username}"></property>
        <property name="password" value="${jdbc.password}"></property>
        <property name="maxActive" value="10"></property>
        <property name="maxIdle" value="5"></property>
    </bean>

    <!-- SqlSessionFactory -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <!-- 数据源 -->
        <property name="dataSource" ref="dataSource"></property>
        <!-- mybatis配置文件 -->
        <property name="configLocation" value="classpath:mybatis/SqlMapConfig.xml"></property>
    </bean>

    <bean id="userDao" class="com.hust.springmybatis.dao.UserDaoImpl">
        <property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
    </bean>

    <!-- 配置Mapper 
         MapperFactoryBean:用于生成mapper代理对象
    -->
    <!-- <bean id="userMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">
        <property name="mapperInterface" value="com.hust.springmybatis.mapper.UserMapper"></property>
        <property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
    </bean> -->

    <!-- MapperScannerConfigurer:mapper的扫描器,将包下边的mapper接口自动创建代理对象
        自动创建到spring容器中,bean的id是mapper的类名(首字母小写)
     -->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <!-- 配置扫描包路径
             如果要扫描多个包,中间使用半角逗好隔开
         -->
        <property name="basePackage" value="com.hust.springmybatis.mapper"></property>
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
    </bean>
</beans>

整合开发原始dao接口
配置SqlSessionFactory
在 applicationContext.xml配置SqlSessionFactory

这里写图片描述
开发dao,这里就举findUserById这个例子
dao接口 这里写图片描述
dao的实现类,在这儿调用配置文件配置的东西(test是配置文件的namespace) 这里写图片描述
user.xml配置文件,这个id必须和dao里面的方法名一致 这里写图片描述
最有别忘了去Spring的配置文件applicationContext.xml里面配置dao
这里写图片描述
以上完成之后,就可以开始测试dao接口
这里写图片描述
这样Dao的开发就大功告成,不过不要惊喜,我们还要实现Mapper的代理方法。
开发mapper.xml和mapper.java
一种是使用MapperFactoryBean,使用此方法对于每个mapper都需要配置,比较繁琐。所以我们使用第二种,MapperScannerConfigurer(扫描mapper)
在spring的配置文件配置扫描mapper
这里写图片描述
开发mapper,还是以findUserById为例
UserMapper.java 这里写图片描述
UserMapper.xml 这里写图片描述
这个xml可以放在和UserMapper.java一个包里面,就会被Spring扫描到,这个工程,我是单独放在资源文件的mapper里面,所以得在在SqlMapConfig.xml里面配置
这里写图片描述
测试mapper接口
这里写图片描述
至此,Spring与MyBaits的整合与开发都可以了。
一定要下载源码自己去琢磨,自己配置一遍
GitHub下载这个工程

相关文章

网友评论

    本文标题:SSM框架(一)--Spring和MyBatis整合(详细教程)

    本文链接:https://www.haomeiwen.com/subject/edsabttx.html