天天看点

Mybatis知识【Mapper代理开发&核心配置】第三章

目录

  • 💂 个人主页:爱吃豆的土豆
  • 💬 如果文章对你有帮助、欢迎关注、点赞、收藏(一键三连)
  • 🏆人必有所执,方能有所成!
  • 🐋希望大家多多支持😘一起进步呀!

​​1,Mapper代理开发​​

​​1.1:Mapper代理开发概述​​

​​1.2:使用Mapper代理要求​​

​​1.3:案例代码实现​​

​​2,核心配置文件​​

​​2.1:多环境配置​​

​​2.2:类型别名​​

1,Mapper代理开发

1.1:Mapper代理开发概述

之前我们写的代码是基本使用方式,它也存在硬编码的问题,如下:

Mybatis知识【Mapper代理开发&核心配置】第三章

这里调用 ​

​selectList()​

​ 方法传递的参数是映射配置文件中的 namespace.id值。这样写也不便于后期的维护。如果使用 Mapper 代理方式(如下图)则不存在硬编码问题。

Mybatis知识【Mapper代理开发&核心配置】第三章

通过上面的描述可以看出 Mapper 代理方式的目的:

  • 解决原生方式中的硬编码
  • 简化后期执行SQL

Mybatis 官网也是推荐使用 Mapper 代理的方式。下图是截止官网的图片

Mybatis知识【Mapper代理开发&核心配置】第三章

1.2:使用Mapper代理要求

使用Mapper代理方式,必须满足以下要求:

  • 定义与SQL映射文件同名的Mapper接口,并且将Mapper接口和SQL映射文件放置在同一目录下。如下图:
  • Mybatis知识【Mapper代理开发&核心配置】第三章
  • 设置SQL映射文件的namespace属性为Mapper接口全限定名
  • Mybatis知识【Mapper代理开发&核心配置】第三章
  • 在 Mapper 接口中定义方法,方法名就是SQL映射文件中sql语句的id,并保持参数类型和返回值类型一致
  • Mybatis知识【Mapper代理开发&核心配置】第三章

1.3:案例代码实现

  • 在​

    ​com.itheima.mapper​

    ​ 包下创建 UserMapper接口,代码如下:
public interface UserMapper {
    List<User> selectAll();
    User selectById(int id);
}      
  • 在​

    ​resources​

    ​ 下创建 ​

    ​com/itheima/mapper​

    ​ 目录,并在该目录下创建 UserMapper.xml 映射配置文件
<!--
    namespace:名称空间。必须是对应接口的全限定名
-->
<mapper namespace="com.itheima.mapper.UserMapper">
    <select id="selectAll" resultType="com.itheima.pojo.User">
        select *
        from tb_user;
    </select>
</mapper>      
  • 在​

    ​com.itheima​

    ​ 包下创建 MybatisDemo2 测试类,代码如下:
/**
 * Mybatis 代理开发
 */
public class MyBatisDemo2 {

    public static void main(String[] args) throws IOException {

        //1. 加载mybatis的核心配置文件,获取 SqlSessionFactory
        String resource = "mybatis-config.xml";
        InputStream inputStream = Resources.getResourceAsStream(resource);
        SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);

        //2. 获取SqlSession对象,用它来执行sql
        SqlSession sqlSession = sqlSessionFactory.openSession();
        //3. 执行sql
        //3.1 获取UserMapper接口的代理对象
        UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
        List<User> users = userMapper.selectAll();

        System.out.println(users);
        //4. 释放资源
        sqlSession.close();
    }
}      

==注意:==

如果Mapper接口名称和SQL映射文件名称相同,并在同一目录下,则可以使用包扫描的方式简化SQL映射文件的加载。也就是将核心配置文件的加载映射配置文件的配置修改为

<mappers>
    <!--加载sql映射文件-->
    <!-- <mapper resource="com/itheima/mapper/UserMapper.xml"/>-->
    <!--Mapper代理方式-->
    <package name="com.itheima.mapper"/>
</mappers>      

2,核心配置文件

核心配置文件中现有的配置之前已经给大家进行了解释,而核心配置文件中还可以配置很多内容。我们可以通过查询官网看可以配置的内容

Mybatis知识【Mapper代理开发&amp;核心配置】第三章

接下来我们先对里面的一些配置进行讲解。  

2.1:多环境配置

在核心配置文件的 ​

​environments​

​​ 标签中其实是可以配置多个 ​

​environment​

​​ ,使用 ​

​id​

​​ 给每段环境起名,在 ​

​environments​

​​ 中使用 ​

​default='环境id'​

​​ 来指定使用哪儿段配置。我们一般就配置一个 ​

​environment​

​ 即可。

<environments default="development">
    <environment id="development">
        <transactionManager type="JDBC"/>
        <dataSource type="POOLED">
            <!--数据库连接信息-->
            <property name="driver" value="com.mysql.jdbc.Driver"/>
            <property name="url" value="jdbc:mysql:///mybatis?useSSL=false"/>
            <property name="username" value="root"/>
            <property name="password" value="1234"/>
        </dataSource>
    </environment>

    <environment id="test">
        <transactionManager type="JDBC"/>
        <dataSource type="POOLED">
            <!--数据库连接信息-->
            <property name="driver" value="com.mysql.jdbc.Driver"/>
            <property name="url" value="jdbc:mysql:///mybatis?useSSL=false"/>
            <property name="username" value="root"/>
            <property name="password" value="1234"/>
        </dataSource>
    </environment>
</environments>=      

2.2:类型别名

<typeAliases>
    <!--name属性的值是实体类所在包-->
    <package name="com.itheima.pojo"/> 
</typeAliases>      
<mapper namespace="com.itheima.mapper.UserMapper">
    <select id="selectAll" resultType="user">
        select * from tb_user;
    </select>
</mapper>