mybatis学习笔记——第二天

mybatis框架执行过程:

1.配置SqlMapConfig.xml文件(名称不固定)

2.通过配置文件,加载mybatis运行环境,创建SqlSessionFactory会话工厂,SqlSessionFactory在实际使用时按单例模式

3.通过SqlSessionFactory创建SqlSession,SqlSession是一个面向用户的接口(提供操作数据库的方法),但线程不安全,建议在方法体内使用

4.调用SqlSession方法操作数据,如果需要提交事务,执行SqlSession的commit()方法

5.释放资源,关闭SqlSession

一、高级映射一对一查询,使用resultMap

查询订单关联查询用户信息

在订单类中定义一个user属性,把查询到订单关联的用户信息映射到这个user属性中

1.定义resultMap

2.编写statement

二、高级映射一对多查询

查询订单(关联用户)及订单明细

1.定义resultMap,在一对一的resultMap的基础上加上订单明细的映射信息,resultMap也可以使用继承extends

2.定义statement

三、高级映射多对多查询

1.思路

2.定义statement

3.定义resultMap

四、延迟加载

resultMap可以实现高级映射,association、collection具有延迟加载功能

延迟加载:先从单表查询,需要时再去关联表进行关联查询

 使用association实现延迟加载

1.定义resultMap

使用association中的select指定延迟加载去执行的statement的id

2.查询订单信息的statement

关联查询用户信息要用到的statement

以上实例的全部mapper接口

本例使用最下面的接口

3.测试思路

4.延迟加载配置

mybatis默认没有开启延迟加载,要在sqlMapConfig.xml中的<setting>标签配置

五、缓存

1.一级缓存

一级缓存是sqlSession级别的缓存。在操作数据库时会构造sqlSession对象,在对象中有一个HashMap用于存储缓存数据

2.二级缓存

与一级缓存相比,二级缓存范围更大,多个sqlSession可以共享同一个Mapper下的二级缓存区域

UserMapper有一个二级缓存区域,其他的Mapper也有自己的二级缓存区域,按namespace分。如果两个mapper的namespace相同,那么这两个mapper执行sql查询到的数据将存在相同的二级缓存区域中

(1)使用前需要先开启二级缓存,先在sqlMapConfig.xml的<setting>中打开总开关

然后在具体的mapper.xml中开启二级缓存,标签中具体属性按需使用

(2)将实体类实现序列化接口

针对每次查询都需要最新数据的sql,可以在statement中设置useCache=false,禁用二级缓存

六、mybatis整合ehcache

1.导入jar包

2.配置mapper中cache的type值为ehcache对cache接口的实现类型

3.创建ehcache.xml配置文件

整合mybatis和其他缓存框架,主要是接口

七、spring整合mybatis

1.导入jar包

spring的jar包

mybatis的jar包

spring和mybatis整合jar包

其中,c3p0用的0.9.5.2,mchange-commons-java用的0.2.11

2.

3.applicationContext.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: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.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx.xsd">
    
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
	   	<property name="driverClass" value="com.mysql.cj.jdbc.Driver"></property>
	   	<property name="jdbcUrl" value="jdbc:mysql://localhost:3306/jdbctest?&amp;userSSL=false&amp;serverTimezone=UTC"></property>
	   	<property name="user" value="root"></property>
	   	<property name="password" value="123"></property>
    </bean>
    
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
    	<property name="configLocation" value="mybatis/sqlMapConfig.xml"></property>
    	<property name="dataSource" ref="dataSource"></property>
    </bean>
    
    <bean id="userMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">
    	<property name="mapperInterface" value="cn.itcast.ssm.mapper.UserMapper"></property>
    	<property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
    </bean>
</beans>

3.sqlMapConfig.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>
		<package name="cn.itcast.ssm.mapper"/>
	</mappers>
	
</configuration>

4.userMapper.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命名空间,就是对sql进行分类管理 -->
<mapper namespace="cn.itcast.ssm.mapper.UserMapper">
	<!-- 通过select执行数据库查询
		id:表示映射文件中的sql,将sql语句封装都mapped Statement对象中,所以将id成为statement的id
		parameterType:指定输入参数的类型
		#{}表示一个占位符
	 -->
	<select id="findUserById" parameterType="int" resultType="cn.itcast.ssm.po.User">
		SELECT * FROM USER WHERE id=#{id}
	</select>

</mapper>

5.userMapper.java接口

public interface UserMapper {
	public User findUserById(int id);
}

6.测试代码

public class UserMapperTest {
	private ApplicationContext applicationContext;
	@Before
	public void setUp() throws Exception{
		applicationContext = new ClassPathXmlApplicationContext("classpath:spring/applicationContext.xml");
	}
	@Test
	public void testFindUserById() {
		UserMapper userMapper = (UserMapper) applicationContext.getBean("userMapper");
		User user = userMapper.findUserById(1);
		System.out.println(user);
	}

}

八、逆向工程

mybatis-generator-core

https://blog.csdn.net/qq_39056805/article/details/80585941  这位大佬整理的非常好,需要时去看

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值