Mybatis与Spring整合之配置文件方式

Mybatis与Spring整合之配置文件

案例制作步骤——基础准备工作

⚫ 环境准备

  1. 导入Spring坐标,MyBatis坐标,MySQL坐标,Druid坐标
    ⚫ 业务类与接口准备
  2. 创建数据库表,并制作相应的实体类
  3. 定义业务层接口与数据层接口
  4. 在业务层调用数据层接口,并实现业务方法的调用
    ⚫ 基础配置文件
  5. jdbc.properties
  6. MyBatis映射配置文件
    ⚫ 整合前基础准备工作
  7. spring配置文件,加上context命名空间,用于加载properties文件
  8. 开启加载properties文件
  9. 配置数据源druid(备用)
  10. 定义service层bean,注入dao层bean
  11. dao的bean无需定义,使用代理自动生成

整合Spring与Mybatis

1. 导入Spring坐标,MyBatis坐标,MySQL坐标,Druid坐标

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.fs</groupId>
    <artifactId>day01_spring_ioc_mybatis</artifactId>
    <version>1.0-SNAPSHOT</version>

    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.1.9.RELEASE</version>
        </dependency>

<!--        jdbc-->

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
            <version>5.1.9.RELEASE</version>
        </dependency>

<!--        spring整合mybatis-->
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis-spring</artifactId>
            <version>2.0.1</version>
        </dependency>
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis</artifactId>
            <version>3.5.5</version>
        </dependency>
<!--        mysql-->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.47</version>
        </dependency>
<!--druid连接池-->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid</artifactId>
            <version>1.1.20</version>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.12</version>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

2. 创建数据库表,并制作相应的实体类

mysql数据库表

在这里插入图片描述

实体类
package com.fs.pojo;

import lombok.Data;

@Data
public class Account {
    private Integer id;
    private String name;
    private Double money;
}

3. 定义业务层接口与数据层接口

数据层接口
package com.fs.dao;

import com.fs.pojo.Account;
import org.apache.ibatis.annotations.*;

import java.util.List;

public interface AccountDao {
    @Select("select * from account")
    List<Account> findAll();//查询所有
}

业务层接口
package com.fs.service;

import com.fs.pojo.Account;

import java.util.List;

public interface AccountService {
    List<Account> findAll();
}

4. 在业务层调用数据层接口,并实现业务方法的调用

package com.fs.service.impl;

import com.fs.dao.AccountDao;
import com.fs.pojo.Account;
import com.fs.service.AccountService;

import java.util.List;

public class AccountServiceImpl implements AccountService {
	//在业务层调用数据层接口
    private AccountDao accountDao;

    //提供DI依耐注入的set方法
    public void setAccountDao(AccountDao accountDao) {
        this.accountDao = accountDao;
    }
	
	//并实现业务方法的调用
    @Override
    public List<Account> findAll() {
        return accountDao.findAll();
    }
}

5. jdbc.properties

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://192.168.93.132:3306/test
jdbc.username=root
jdbc.password=root

6. MyBatis映射配置文件

我这里使用的MyBatis的注解开发,所以没有使用这个映射配置文件

7. spring配置文件,整合MyBatis(xml中有详细解释)

spring核心配置文件
<?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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context
       https://www.springframework.org/schema/context/spring-context.xsd">

<!--    引入properties-->
    <context:property-placeholder location="classpath:jdbc.properties"/>

<!--    整合druid,把DruidDataSource交给spring管理-->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="${jdbc.driver}"/>
        <property name="url" value="${jdbc.url}"/>
        <property name="username" value="${jdbc.username}"/>
        <property name="password" value="${jdbc.password}"/>
    </bean>

    <!--    整合MyBatis-->
    <!--    配置MyBatis的会话工厂类  mybatis.spring 下的SqlSessionFactoryBean
    配置的sqlSessionFactory得到SqlSession,然后MyBatis从spring中拿到SqlSession.getMapper()去动态代理dao-->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!--        给MyBatis配置链接池,依耐注入-->
        <property name="dataSource" ref="dataSource"/>
<!--        配置别名扫描的包,被扫描的包下的类起的别名就是类名首字母小写,用于mapper.xml文件中使用-->
        <property name="typeAliasesPackage" value="com.fs.pojo"/>
    </bean>

<!--配置MyBatis扫描dao的包,让MyBatis动态代理生成这个dao的实现类,并交给ioc管理
        mybatis-spring这个包下MapperScannerConfigurer提供了spring于MyBatis的整合-->
    <bean id="mapperScanner" class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<!--        告诉MyBatis我dao在哪里.然后MyBatis将这个dao实现,然后给spring管理-->
        <property name="basePackage" value="com.fs.dao"/>
    </bean>


    <!--  把业务类 AccountServiceImpl 交给ioc管理 -->
    <bean id="accountServiceImpl" class="com.fs.service.impl.AccountServiceImpl">
<!--       依耐注入dao,这个dao被MyBatis动态代理实现后被spring存放在ioc容器中-->
        <property name="accountDao" ref="accountDao"/>
    </bean>
</beans>

测试方法

    @Test
    public void findAll() {
        //创建ioc容器
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
        //从容器中获取accountServiceImpl
        AccountServiceImpl accountServiceImpl = (AccountServiceImpl) applicationContext.getBean("accountServiceImpl");
        //调用方法,查询结果
        List<Account> all = accountServiceImpl.findAll();
        System.out.println(all);
    }

执行结果

在这里插入图片描述

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值