当前位置:   article > 正文

「Mybatis实战六」:Mybatis核心文件详解 - MyBatis常用配置typeAliases、mappers_mybatis typealiases

mybatis typealiases

一、MyBatis核心配置文件层级关系

​ 本文代码在 Mybatis初体验:一小时从入门到运行你的第一个应用 所构建的基础代码结构之上,进行修改。想要了解 environments、properties 的用法,可参考文章:「Mybatis实战五」:Mybatis核心文件详解 - MyBatis常用配置environments、properties

  • MyBatis 的配置文件包含了会深深影响 MyBatis 行为的设置和属性信息。

  • 配置文档的顶层结构如下:

在这里插入图片描述

二、MyBatis常用配置解析

1、typeAliases标签

类型别名是为 Java 类型设置一个短的名字。

​ 为了简化映射文件 Java 类型设置,mybatis框架为我们设置好的一些常用的类型的别名:

在这里插入图片描述

​ 在写parametertype时,若需要使用这些类型,直接使用别名即可。

设置别名有两种方式,单起别名 和 批量起别名,具体见如下修改:

  • 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>
       <properties resource="jdbc.properties"></properties>
    
       <typeAliases>
           <!--方式一:给单个实体起别名-->
    <!--        <typeAlias type="domain.User" alias="user"></typeAlias>-->
           <!--方式二:批量起别名 别名就是类名,且不区分大小写-->
           <package name="domain"/>
       </typeAliases>
    
       <!--环境配置-->
       <environments default="mysql">
           <!--使用mysql环境-->
           <environment id="mysql">
               <!--使用jdbc事务管理亲-->
               <transactionManager type="JDBC"></transactionManager>
               <!-- 使用连接池-->
               <dataSource type="POOLED">
                   <property name="driver" value="${jdbc.driver}"/>
                   <property name="url" value="${jdbc.url}"/>
                   <property name="username" value="${jdbc.username}"/>
                   <property name="password" value="${jdbc.password}"/>
               </dataSource>
           </environment>
       </environments>
    
       <!--加载映射配置-->
       <mappers>
           <mapper resource="UserMapper.xml"></mapper>
       </mappers>
    
    </configuration>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37

    注意排列顺序,需要按照前面写的配置文件层级顺序。

  • 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">
    <mapper namespace="user">
       <!--  查询所有用户  -->
       <select id="findAll" resultType="user">
           select *
           from user
       </select>
    
       <!--新增用户-->
       <!--#{} : mybatis中的占位符,等同于JDBC中的
           parameterType :指定接收到的参数类型 -->
       <insert id="save" parameterType="domain.User">
           insert into user(username, birthday, sex, address)
           values (#{username}, #{birthday}, #{sex}, #{address})
       </insert>
    
       <!--  更新用户  -->
       <update id="update" parameterType="domain.User">
           update user set username=#{username},birthday=#{birthday},sex=#{sex},address=#{address} where id=#{id}
       </update>
    
       <!--删除用户 java.lang.Integer-->
       <delete id="delete" parameterType="int">
           delete from user where id = #{id}
       </delete>
    
    </mapper>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
  • 测试
    在这里插入图片描述

2、mappers标签

  1. 使用相对于类路径的资源引用,例如: <mapper resource="xxx/userMapper.xml"/>

  2. 使用完全限定资源定位符(URL),例如: <mapper url="file:///xxx/mappers/userMapper.xml"/>

    下面两种mapper代理开发中使用

  3. 使用映射器接口实现类的完全限定类名,例如: <mapper class="xxx.userMapper"/>

  4. 将包内的映射器接口实现全部注册为映射器,例如: <package name="xxx.mapper"/>

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/438485
推荐阅读
相关标签
  

闽ICP备14008679号