Spring框架整合mybais框架-注入映射器實現
通過上面一個案例,我們能夠看到,每次在執行具體的某個方法的時候,我們都會創建一個映射器,這是非常麻煩的,這就是我們所看到的UserMapperImpl.java,那麽我們能不能將他省略掉了,將創建映射器的方法交給Spring的ioc容器進行管理,答案是肯定的
aplicationContext.xml
<?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:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd "> <!--配置数据源 --> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> <property name="driverClassName" value="com.mysql.jdbc.Driver"></property> <property name="url" value="jdbc:mysql://localhost:3306/smbms?useUnicode=true&characterEncoding=utf-8"></property> <property name="username" value="root"></property> <property name="password" value="root"></property> </bean> <!--配置SqlSessionFactoryBean --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <!--获取到你的数据源 --> <property name="dataSource" ref="dataSource"></property> <!--获取到mybatis的配置文件 注意这里使用的是value属性 --> <property name="configLocation" value="classpath:mybatis-config.xml"></property> <!--使用下面这种方式获取sql文件 --> <property name="mapperLocations"> <list> <value>classpath:cn/smbms/dao/**/*.xml</value> </list> </property> </bean> <!--配置 SqlSessionTemplate 用它来执行数据库的各种操作 使用继承SqlSessionDaoSupport方式的话,就不用获取SqlSessionTemplate类了--> <!-- <bean id="sqlSessionTemplate" class="org.mybatis.spring.SqlSessionTemplate"> 操作数据库的时候,引用数据库的连接 通过这个SqlSessionTemplate类的构造方法 <constructor-arg name="sqlSessionFactory" ref="sqlSessionFactory"></constructor-arg> </bean> --> <!--將映射器的實現交給spring的ioc容器進行管理,這時候,可以將UserMapperImpl類刪除掉也是可以的 --> <bean id="userMapper" class="org.mybatis.spring.mapper.MapperFactoryBean"> <property name="mapperInterface" value="cn.smbms.dao.user.UserMapper"></property> <!-- 为什么还需要配置会话工厂,主要的原因是获取sqlSessionTemplate操作数据库 --> <property name="SqlSessionFactory" ref="sqlSessionFactory"></property> </bean> </beans>
這時候,我們可以將UserMapperImpl.java類進行刪除,刪除之後的項目結構;
最總的運行結果: