(原创)mybatis学习二,spring和mybatis的融合
mybatis学习一夯实基础
上文介绍了mybatis的相关知识,这一节主要来介绍mybaits和spring的融合
一,环境搭建
1,jar包下载,下载路径为jar包
2,将包导入到java工程中
3,新建两个源文件夹,分别为spring和mybatis用来放置各自的xml文件
4,新建一个db.properties文件,用来配置数据库相关信息
最终的效果如下所示:
二,配置文件
1,数据库配置相关信息db.properties
View Codedriver=com.mysql.jdbc.Driver url=jdbc:mysql://localhost:3306/mybatis name=root password=123456
2,下面就是mybatis的相关配置了,也就是config.xml配置
单独针对mybatis来说,配置文件主要包括了,配置环境的配置,也就是数据库的配置,mapper的配置还有其他一些setting的配置,对于框架来说,框架是系统的核心,是系统的中枢,所以,数据库配置就要交给框架来配置,这样其他的也可以用这个,综上所述,config.xml文件就用来配置mapper和setting的配置,所以,目前的配置暂且如下:
mybatis-config.xml<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> <configuration> <mappers> <mapper resource="org/mybatis/mapping/userMapper.xml" /> </mappers> </configuration>3,下面就是重头戏,配置spring的配置文件,applicationContext.xml文件,具体步骤如下
a,导入xml的头定义
b,配置数据库,包含两步,读取配置文件位置和内容
View Code<!-- 加载配置文件 --> <context:property-placeholder location="classpath:db.properties" /> <!-- 数据源,使用dbcp --> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <property name="driverClassName" value="${driver}" /> <property name="url" value="${url}" /> <property name="username" value="${name}" /> <property name="password" value="${password}" /> <property name="maxActive" value="10" /> <property name="maxIdle" value="5" /> </bean>c,接下来就是要配置能够生成SqlSessionfactory这样的类了,这个类就是org.mybatis.spring.SqlSessionFactoryBean
那么,这个配置文件要有两个作用,读取mybatis的配置文件config.xml和给mybaits指定数据库,为什么呢?上文中我们学习mybatis的过程中,产生Sql
SessionFactory的过程需要读取config.xml文件,所以,spring的融合配置文件肯定需要给SqlSessionFactory指定config.xml文件,但是这个文件在第二步的时候我们并没有给指定数据库,所以,这里我们再给它指定数据库信息,所以,详细的配置信息如下View Code<!-- sqlSessinFactory --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <!-- 加载mybatis的配置文件 --> <property name="configLocation" value="mybatis/config.xml" /> <!-- 数据源 --> <property name="dataSource" ref="dataSource" /> </bean>d,上面的信息我们都配置好了,但是还少一步,我们在工程上写的DAO类spring怎样知道这些类?所以,接下来我们要配置这些类
三,上面的配置信息都写好了,下一步是不是可以访问数据库了?
答案是不,上面只是融合了spring和mybatis这两个框架,那么怎么用呢?这个时候我们就要学习一个新类:SqlSessionDaoSupport
这个类是干什么的?这个累就是能够读取spring的配置信息中的sqlSesisonFactory里的配置信息,然后调用mybatis来获取sqlSession的类,所以,我们写的任何DAO层的类,都要继承自这个类,然后获取需要的SqlSession.
继承这个类后,我们可以通过SqlSession ssSession = this.getSqlSession();来获取当前的sqlsession,这个我们已经全部托管给spring框架了,所以,我们使用后就不哟昂在close了。
四,上面的都结束了,是不是就可以用了?
答案是否定的?为什么呢?请听我慢慢道来
1 spring通过配置信息来融合mybaits,也就是可以调用mybatis生成SqlSession,进而进行mybaits框架内的数据操作
2,spring框架内的DAO层,通过继承SqlSessionDaoSupport来获取SqlSession,那么问题来了,这个父类SqlSessionDaoSupport是谁来实例化呢?你肯定会说是spring框架啊,对,没错,是这个,但是这个生成的SqlSession是一个数据库的sqlsession,如果以后这个项目很大了,很明显需要五个或者六个数据库,那么,你这个DAO继承的是那个SqlsessionDaosupport了呢?所以,这里引出了一个新的配置,就是配置DAO,配置其sqlSessionFactory,所以,在applicationConfig.xml最后的配置需要加上这一句:
<!-- 配置DAO接口 --> <bean id="userDao" class="org.mabits.dao.impl.UserDaoImpl"> <property name="sqlSessionFactory" ref="sqlSessionFactory"></property> </bean>在学习mybatis的时候,有两种方案,第一种是配置文件,第二种是mapper class。那么针对第二种该怎么弄呢?
针对第二种,需要在applicationContext.xml中配置,具体配置如下
View Code<!-- mapper配置 MapperFactoryBean:根据mapper接口生成mapper对象--> <bean id="" class="org.mybatis.spring.mapper.MapperFactoryBean"> <property name="mapperInterface" value="org.mybatis.mapping.UserMapper"></property> <property name="sqlSessionFactory" ref="sqlSessionFactory"></property> </bean>但是如果一个工程中有很多类,那么这很多类该怎么配置呢?是不是可以通过包名来一块导入呢?对了,你猜对了,就是这个样子
具体的配置如下
View Code<!-- Mapper批量扫描: 从mapper包中扫描mapper接口,并自动创建代理对象,在spring容器中注册 遵循规范:将mapper.java和mapper.xml文件命名一致,并且放在同一个目录里面 自动扫描出来的mapper的bean的id是mapper类名,首字母小写 --> <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="basePackage" value="org.mybatis.mapping"></property> <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property> </bean>
五,总结一下
最后,applicationConfig.xml的配置文件如下
applicationContext.xml1 <?xml version="1.0" encoding="UTF-8"?> 2 <beans xmlns="http://www.springframework.org/schema/beans" 3 xmlns:context="http://www.springframework.org/schema/context" 4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" 5 xmlns:tx="http://www.springframework.org/schema/tx" xmlns:p="http://www.springframework.org/schema/p" 6 xmlns:util="http://www.springframework.org/schema/util" xmlns:jdbc="http://www.springframework.org/schema/jdbc" 7 xmlns:cache="http://www.springframework.org/schema/cache" 8 xsi:schemaLocation=" 9 http://www.springframework.org/schema/context 10 http://www.springframework.org/schema/context/spring-context.xsd 11 http://www.springframework.org/schema/beans 12 http://www.springframework.org/schema/beans/spring-beans.xsd 13 http://www.springframework.org/schema/tx 14 http://www.springframework.org/schema/tx/spring-tx.xsd 15 http://www.springframework.org/schema/jdbc 16 http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd 17 http://www.springframework.org/schema/cache 18 http://www.springframework.org/schema/cache/spring-cache-3.1.xsd 19 http://www.springframework.org/schema/aop 20 http://www.springframework.org/schema/aop/spring-aop.xsd 21 http://www.springframework.org/schema/util 22 http://www.springframework.org/schema/util/spring-util.xsd"> 23 <!-- 加载配置文件 --> 24 <context:property-placeholder location="classpath:db.properties" /> 25 26 <!-- 数据源,使用dbcp --> 27 <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" 28 destroy-method="close"> 29 <property name="driverClassName" value="${driver}" /> 30 <property name="url" value="${url}" /> 31 <property name="username" value="${name}" /> 32 <property name="password" value="${password}" /> 33 <property name="maxActive" value="10" /> 34 <property name="maxIdle" value="5" /> 35 </bean> 36 <!-- sqlSessinFactory --> 37 <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> 38 <!-- 加载mybatis的配置文件 --> 39 <property name="configLocation" value="mybatis/config.xml" /> 40 <!-- 数据源 --> 41 <property name="dataSource" ref="dataSource" /> 42 </bean> 43 <!-- 配置DAO接口 --> 44 <bean id="userDao" class="org.mabits.dao.impl.UserDaoImpl"> 45 <property name="sqlSessionFactory" ref="sqlSessionFactory"></property> 46 </bean> 47 <!-- mapper配置 MapperFactoryBean:根据mapper接口生成mapper对象 --> 48 <bean class="org.mybatis.spring.mapper.MapperFactoryBean"> 49 <property name="mapperInterface" value="org.mybatis.mapping.UserMapper"></property> 50 <property name="sqlSessionFactory" ref="sqlSessionFactory"></property> 51 </bean> 52 <!-- Mapper批量扫描: 从mapper包中扫描mapper接口,并自动创建代理对象,在spring容器中注册 遵循规范:将mapper.java和mapper.xml文件命名一致,并且放在同一个目录里面 53 自动扫描出来的mapper的bean的id是mapper类名,首字母小写 --> 54 <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> 55 <property name="basePackage" value="org.mybatis.mapping"></property> 56 <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property> 57 </bean> 58 </beans>
上面的就是spring和mybatis融合的相关信息了,接下来开始学习springMVC和mybatis的融合了