欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

sm-Spring与Mybatis的整合

程序员文章站 2022-07-13 21:11:29
...

Spring与Mybatis的整合,主要包括两个方面,一是将Mybatis的会话工厂交由Spring进行创建管理,二是将mapper接口交由Spring统一管理。


接下来通过项目进行说明。

新建java工程,项目结构如下:

sm-Spring与Mybatis的整合


数据库资源配置文件不再叙述,在之前的mybatis文章中已经多次提及,本项目从数据库的连接至接口的开发进行讲解。

本项目通过一个数据查询案例进行讲解。


1、编写po类

package com.bs.po;
/*
 *@Author swxctx
 *@time 2017年4月25日
 *@Explain:数据表po对象
 *字段:
 */
public class Data {
	private int num;
	private String temp;
	private String co;
	public int getNum() {
		return num;
	}
	public void setNum(int num) {
		this.num = num;
	}
	public String getTemp() {
		return temp;
	}
	public void setTemp(String temp) {
		this.temp = temp;
	}
	public String getCo() {
		return co;
	}
	public void setCo(String co) {
		this.co = co;
	}
}

2、编写mybatis配置文件SqlMapConfig.xml,与Spring结合时,配置文件其实只需要对mybatis进行一些设置即可。

<?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>

	<typeAliases>
		<package name="com.bs.po"/>
	</typeAliases>
	
	<!-- 加载mapper -->
	<mappers>
		<package name="com.bs.mapper"/>
	</mappers>
	
</configuration>

3、编写mapper接口

package com.bs.mapper;
/*
 *@Author swxctx
 *@time 2017年3月14日
 *@Explain:
 */

import com.bs.po.Data;


public interface DataMapper{
	//根据num查询数据信息
	public Data findDataByNum(int num)throws Exception;
	
}

4、编写mapper.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.bs.mapper.DataMapper">
	
	<!-- 根据num查询数据信息 -->
	<select id="findDataByNum" parameterType="int" resultType="com.bs.po.Data">
		select *from Data where num=#{num}
	</select>
	
</mapper>

5、编写Spring配置文件applicationContext.xml,此配置文件主要配置数据库连接相关信息以及mapper接口

<?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:mvc="http://www.springframework.org/schema/mvc"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
		http://www.springframework.org/schema/beans/spring-beans-3.2.xsd 
		http://www.springframework.org/schema/mvc 
		http://www.springframework.org/schema/mvc/spring-mvc-3.2.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 
		http://www.springframework.org/schema/tx 
		http://www.springframework.org/schema/tx/spring-tx-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 name="url" value="${jdbc.url}"/>
		<property name="username" value="${jdbc.username}"/>
		<property name="password" value="${jdbc.password}"/>
		<property name="maxActive" value="10"/>
		<property name="maxIdle" value="5"/>
	</bean>	
	
	<!-- mapper配置 -->
	<!-- 让spring管理sqlsessionfactory 使用mybatis-spring.jar -->
	<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
		
		<!-- 数据库连接池 -->
		<property name="dataSource" ref="dataSource" />
		
		<!-- 加载mybatis的全局配置文件 -->
		<property name="configLocation" value="classpath:mybatis/SqlMapConfig.xml" />
	</bean>
	
	<!-- mapper配置(单个加载) -->
	<!-- <bean id="userMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">
		指定mapper接口
		<property name="mapperInterface" value="com.bs.mapper.UserMapper"></property>
		<property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
	</bean> -->
	
	<!-- mapper扫描(自动扫描) -->
	<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
		<!-- 扫描的包名 -->
		<property name="basePackage" value="com.bs.mapper"></property>
		<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
	</bean>

</beans>

6、在上面,配置已经完成,接下来可以测试了

public class DaoUserTest {
	private ApplicationContext applicationContext;
	
	@Before
	public void setUp() throws Exception {
		//得到spring容器
		applicationContext = new ClassPathXmlApplicationContext("config/spring/applicationContext.xml");
	}

	@Test
	public void testFindDataByNum() throws Exception{
		DataMapper dataMapper = (DataMapper)applicationContext.getBean("dataMapper");
		Data data = dataMapper.findDataByNum(1);
		System.out.println(data.getTemp());
	}
}

结果如下所示:

sm-Spring与Mybatis的整合