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

来~讲个SqlSessionFactory和SqlSession的俗套故事吧~~

程序员文章站 2024-01-26 10:11:19
...

下面纯属初学者的个人理解,有不对的地方欢迎批评指正~
这是一个有关老李的故事……
老李建了一家工厂,专门卖饲料。
有一天,老李在网上收到一个外国人的邮件,里面附带了订单信息
来~讲个SqlSessionFactory和SqlSession的俗套故事吧~~
可是老李英语不太好,只知道是老外想从从他的饲料厂进一批饲料,可具体的要求看不懂,哎、老李长叹一口气,找来了公司的翻译皮小姐
皮小姐三下五除二就列出了订单的具体要求:给猪吃、酥脆好咬、富含含欧米伽3……老李拇指一竖,厉害,没白发工资!
老李很激动,于是在工厂以“第一笔老外订单”为主题开了个会,会议的内容无非就是订单里的那些XXX……
会议结束后,老李把订单信息会议记录给了配货员陈陈,陈陈对照订单从A仓库里的B货架上取了C货,把货物包好后,就给那个事儿多的老外送了过去。

忽然觉得自己好啰嗦= = ,如果大家有耐心看到这里,我来解释下~

  • 老李嘛,能姑且当成SqlSessionFactory嘛= =
  • 老外的邮件就是MyBatis的核心配置文件(mybatis-config.xml)
  • 邮件里附带的订单信息可以简单理解为DAO接口和映射文件(XxxMapper.xml)
  • 翻译皮小姐可以理解为工厂里负责解析xml文件的解析器
  • 在工厂里开的那个会议可以理解为SqlSession
  • 会议记录可以理解MyBatis底层根据DAO接口的字节码对象为其提供的一个实现类创建的实例对象
  • 配货员陈陈就是具体负责的执行器
有兴趣的同学可以坐下同义替换(笑^ ^

最后

附上段测试的练习代码。。。
测试类

/**
 * 测试MyBatis开发环境
 * @author aqin1012
 * 测试类
 */
public class TeatMybatis {
	@Test
	public void testFindAll() throws Exception {
		//1.读取mybatis-config核心配置文件
		InputStream in=Resources.
				getResourceAsStream("mybatis.mybatis-config.xml");//默认在类目录下查找
		//2.获取SqlSessionFactory工厂对象
		SqlSessionFactoryBuilder builder = new SqlSessionFactoryBuilder();//创建工厂创建对象
		SqlSessionFactory fac = builder.build(in); //根据读入的配置文件,通过工厂打开一个链接(生产线)
		//3.获取SqlSession对象
		SqlSession session = fac.openSession(); //在工厂里创建会谈
		//4.获取DoorMapper接口的实例对象
		//将DoorMapper的字节码对象传给框架,框架底层可以根据字节码对象为接口提供一个实现类/子类
		DoorMapper mapper =session.getMapper(DoorMapper.class);
		//5.调用findAll方法查询所有门店信息
		List<Door> list=mapper.findAll();
		for (Door door : list) {
			System.out.println(door);
		}
	}
}
/**
 * 测试MyBatis开发环境
 * @author aqin1012
 * 接口类
 */
public interface XxxMapper {
	public List<Xxx> find();
}

MyBatis的配置文件: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">

<!-- MyBatis的配置文件 -->
<configuration>
	<!-- 1.配置开发环境 -->
	<environments default="develop">
		<!-- 这里可以配置多个环境,比如develop,test等 -->
		<environment id="develop">
			<!-- 1.1.配置事务管理方式:JDBC:将事务交给JDBC管理(推荐) -->
			<transactionManager type="JDBC"></transactionManager>
			<!-- 1.2.配置数据源,即连接池方式:JNDI/POOLED/UNPOOLED -->
			<dataSource type="POOLED">
				<property name="driver" value="com.mysql.jdbc.Driver" />
				<property name="url"
					value="jdbc:mysql://localhost:端口号/数据库名?characterEncoding=utf-8" />
				<property name="username" value="用户名" />
				<property name="password" value="密码" />
			</dataSource>
		</environment>
	</environments>

	<!-- 2.加载Mapper配置文件,路径以斜杠间隔: xx/xx/../xx.xml -->
	<mappers>
		<mapper resource="mybatis/mapper/XxxMapper.xml" />
	</mappers>
</configuration>
映射文件:XxxMapper.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">
<!-- 门店表的映射文件	namespace值为对应接口的全路径 -->
<mapper namespace="com.hehe.dao.XxxMapper">
	<!-- 从数据库查询查询信息,id值为对应接口中方法的名字,resultType指定将查询的结果封装到哪个pojo对象-->
	<select id="find" resultType="com.hehe.pojo.Xxx">
		select * from 表名
	</select>
	<!-- 测试类中通过namespace和 id定位到要执行的SQL语句 -->
</mapper>

```java
在这里插入代码片

applicationConfig.xml

<bean>内的对象注册为bean,该类的实例交由spring框架进行创建
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:context="http://www.springframework.org/schema/context" 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:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
	http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
	http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
	http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">
	
	<!-- 1.加载jdbc.properties文件的位置 -->
	<context:property-placeholder location="classpath:jdbc.properties"/>
	
	<!-- 2.配置druid连接池 ,id是固定值,class是druid连接池类的全路径 -->
	<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
		<!-- 配置连接数据库的基本信息 -->
		<property name="driverClassName" value="${db.driverClassName}"></property>
		<property name="url" value="${db.url}"></property>
		<property name="username" value="${db.username}"></property>
		<property name="password" value="${db.password}"></property>
	</bean>
	
	<!-- 3.整合spring和mybatis框架	
		将SqlSession等对象的创建交给Spring容器
		id值(sqlSessionFactory)是固定值
	 -->
	<bean id="sqlSessionFactory" 
		class="org.mybatis.spring.SqlSessionFactoryBean">
		<!-- 3.1.指定mybatis核心配置文件的位置 -->
		<property name="configLocation" 
				value="classpath:mybatis/mybatis-config.xml"></property>
		<!-- 3.2.配置连接池(数据源) ref指向连接池bean对象的id值 -->
		<property name="dataSource" ref="dataSource"></property>
		<!-- 3.3、扫描所有的 XxxMapper.xml映射文件,读取其中配置的SQL语句 -->
		<property name="mapperLocations" value="classpath:mybatis/mapper/*.xml"/>
	</bean>
	
	<!-- 4、定义mapper接口扫描器 (确定位置)-->
	<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
		<!-- 扫描所有XxxMapper接口,将接口实例的创建交给spring容器,告诉框架该类在哪里 -->
		<property name="basePackage" 
			value="com.hehe.dao"/>
	</bean>
	
	<!-- 5.配置需要扫描的包(service层):spring自动去扫描 base-package下的类,
		如果扫描到的类上有 @Controller@Service@Component等注解,
		将会自动将类注册为bean(即由spring创建实例)
	 -->
	<context:component-scan 
		base-package="com.tedu.service">
	</context:component-scan>

</beans>
相关标签: 出坑必备~