Mybatis整合spring

本文介绍了如何将Mybatis框架与Spring框架进行整合,利用Spring的AOP思想将Mybatis对象放入Spring容器中,包括SqlSessionFactory的配置、Mapper的代理对象获取、数据库连接和事务管理。详细步骤包括环境搭建、配置文件、Mapper接口与XML映射器的创建,以及DAO层的实现。测试中直接加载Spring核心文件即可进行数据库操作。
摘要由CSDN通过智能技术生成

前言

mybatis框架:
它支持定制化sql,存储,以及高级映射,封装好了所有的jdbc,手动获得参数,以及获得结果集。MyBatis 可以使用简单的 XML 或注解来配置和映射原生信息,将接口和 Java 的 POJOs(Plain Ordinary Java Object,普通的 Java对象)映射成数据库中的记录。
Spring框架:
是一个轻量级的控制反转(IoC)和面向切面(AOP)的容器框架,用于存储web,service,dao层中的对象。
正文:
一、整合思想:
利用spring中的aop思想,将mybatis框架中的对象,放到Spring框架中。具体整合如下:

  1. SqlSessionFactory对象应该放到spring容器中作为单例存在。
  2. 传统dao的开发方式中,应该从spring容器中获得sqlsession对象。
  3. Mapper代理形式中,应该从spring容器中直接获得mapper的代理对象。
  4. 数据库的连接以及数据库连接池事务管理都交给spring容器来完成。

二、搭建环境
整个目录结构:
在这里插入图片描述

  1. 导入jar包
    在这里插入图片描述
    在这里插入图片描述
  2. 配置文件
    2.1mybatis框架的sqlMapper.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>
	<!--配置别名-->
	<typeAliases>
		<package name="cn.mapper.dao.pojo" />
	</typeAliases>
	<!--配置映射器扫描-->
	<mappers>
	<package name="cn.mldn.mybatis.mapper"/>
	<!-- <mapper resource="cn/mldn/mybatis/mapper/userMapper.xml"/> -->
	</mappers>
	
</configuration>

2.2、Spring框架的application.xml

<?xml version="1.0" encoding="UTF-8"?>
<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">

	<!-- 加载db.propeties -->
	<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="minIdle" value="5"/>
	</bean>
	
	<!-- mybaties工厂 -->
	<bean id="sqlSessionFactoryBean" class="org.mybatis.spring.SqlSessionFactoryBean">
	 <property name="dataSource" ref="dataSource"></property>
	 <property name="configLocation" value="classpath:sqlMapperConfig.xml"></property>
	</bean>
	
	<!-- 第一种:Dao原始开发 -->
	<bean id="userDao" class="cn.mldn.mybatis.dao.UserDaoImpl">
	<property name="sqlSessionFactory" ref="sqlSessionFactoryBean"></property>
	</bean>
	<!--第二种: mapper的动态代理 -->
	<bean id="userMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">
	<property name="sqlSessionFactory" ref="sqlSessionFactoryBean"/>
	<property name="mapperInterface" value="cn.mldn.mybatis.mapper.UserMapper"/>
	</bean>
	
	<!-- 第三种:mapper动态代理开发加强版,扫描 -->
	<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
	
	<!-- 直接扫描基本包 -->
	<property name="basePackage" value="cn.mldn.mybatis.mapper"></property>
	</bean>
</beans>

2.3、配置日志----log4j.properties

#固定写法
# Global logging configuration
log4j.rootLogger=DEBUG, stdout
# Console output...
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n

2.4、数据源配置:db.properties

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/mybaties?characterEncoding=utf-8
jdbc.username=root
jdbc.password=root

  1. 创建mapper
    3.1创建接口usermapper.java
    通过接口中的方法,实现对数据库的操作(增、删、改、查)。
package cn.mldn.mybatis.mapper;

import cn.mapper.dao.pojo.User;

public interface UserMapper {

	//通过id查询user
	public User findUserById(Integer id);
}

3.2创建mapper.xml映射器
遵循四个原则:

  • xml中的id值,与接口中的方法名相同
  • xml中的返回值类型(resultType),与接口中的返回值类型一致
  • xml中的方法的入参类型(parameterType),与接口中的有参参数的类型一值
  • xml中的命名空间绑定,与接口的 .class一致
<?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="cn.mldn.mybatis.mapper.UserMapper">
<!-- 通过id查询出user -->
<select id="findUserById" parameterType="Integer" resultType="User">
select * from user where id=#{vv}
</select>
</mapper>
  1. 创建pojo
    简单java类,提供set,get,toString。
    在这里插入图片描述
    以上则可达到mapper配置完毕

5 . 创建dao层
5.1创建接口userDao.java
此接口也可用于对数据库进行处理,但对数据库的处理交给mybatis更好。故此接口现为空接口,为了Spring的动态代理,创建继承接口的条件
5.2创建继承接口的类userDaoImpl.java
此类继承接口,达到动态代理的条件,并且需要继承SqlSessionDaoSupport开始mybatis与spring的整合。

package cn.mldn.mybatis.dao;

import org.mybatis.spring.support.SqlSessionDaoSupport;
//原始dao开发

public class UserDaoImpl extends SqlSessionDaoSupport implements UserDao {

	
}

6.测试junit

package cn.mldn.mybatis.junit;

import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import cn.mapper.dao.pojo.User;
import cn.mldn.mybatis.mapper.UserMapper;

public class mapperTest {

	@Test
	public void findUserById() {
		//Spring取得核心配置文件
		ApplicationContext ac=new ClassPathXmlApplicationContext("applicationContext.xml");
		//UserMapper bean = (UserMapper) ac.getBean("userMapper");
		
		UserMapper bean = ac.getBean(UserMapper.class);
		User findUserById = bean.findUserById(11);
		System.out.println(findUserById);
		
	}
}

问题:为什么测试中直接取得Spring的核心文件,就可以直接加载mapper接口,进行增删改查?
注解:在applicationContext.xml中,已经获得了mybatis的核心文件,并且采用了Sprng的jdbc连接。
第一,二,三都能使得mybatis的sqlSessionFactory存入Spring中,并被mybatis获得。
所以测试类中,直接进行从加载mybatis的mapper接口文件,实现对数据库的增删改查

<!-- mybaties工厂 -->
	<bean id="sqlSessionFactoryBean" class="org.mybatis.spring.SqlSessionFactoryBean">
	 <property name="dataSource" ref="dataSource"></property>
	 <property name="configLocation" value="classpath:sqlMapperConfig.xml"></property>
	</bean>
	
	<!-- 第一种:Dao原始开发 -->
	<bean id="userDao" class="cn.mldn.mybatis.dao.UserDaoImpl">
	<property name="sqlSessionFactory" ref="sqlSessionFactoryBean"></property>
	</bean>
	<!--第二种: mapper的动态代理 -->
	<bean id="userMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">
	<property name="sqlSessionFactory" ref="sqlSessionFactoryBean"/>
	<property name="mapperInterface" value="cn.mldn.mybatis.mapper.UserMapper"/>
	</bean>
	
	<!-- 第三种:mapper动态代理开发加强版,扫描 -->
	<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
	
	<!-- 直接扫描基本包 -->
	<property name="basePackage" value="cn.mldn.mybatis.mapper"></property>
	</bean>

————————————————————上文出自胖胖,转载请附带原文链接

后续更新自学的方法,以及java知识总结
我是哪怕前路坎坷,也不愿负年轻的菜狗,自学之路,共勉


本文来自 今晚打胖胖 的CSDN 博客 ,全部文章请点击:https://blog.csdn.net/qq_42843730/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值