六、通过mapper接口加载映射文件

通过 mapper 接口加载映射文件,这对于后面 ssm三大框架 的整合是非常重要的。那么什么是通过 mapper 接口加载映射文件呢?

  我们首先看以前的做法,在全局配置文件 mybatis-configuration.xml 通过 <mappers> 标签来加载映射文件,那么如果我们项目足够大,有很多映射文件呢,难道我们每一个映射文件都这样加载吗,这样肯定是不行的,那么我们就需要使用 mapper 接口来加载映射文件

  以前的做法:

  

  改进做法:使用 mapper 接口来加载映射文件

回到顶部

1、定义 userMapper 接口


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

package com.ys.mapper;

import org.apache.ibatis.annotations.Delete;

import org.apache.ibatis.annotations.Insert;

import org.apache.ibatis.annotations.Select;

import org.apache.ibatis.annotations.Update;

import com.ys.po.User;

public interface UserMapper {

    //根据 id 查询 user 表数据

    public User selectUserById(int id) throws Exception;

    //向 user 表插入一条数据

    public void insertUser(User user) throws Exception;

    

    //根据 id 修改 user 表数据

    public void updateUserById(User user) throws Exception;

    

    //根据 id 删除 user 表数据

    public void deleteUserById(int id) throws Exception;

}

回到顶部

2、在全局配置文件 mybatis-configuration.xml 文件中加载 UserMapper 接口(单个加载映射文件)

回到顶部

3、编写UserMapper.xml 文件


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

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

<?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="com.ys.mapper.UserMapper">

    

    <!-- 根据 id 查询 user 表中的数据

       id:唯一标识符,此文件中的id值不能重复

       resultType:返回值类型,一条数据库记录也就对应实体类的一个对象

       parameterType:参数类型,也就是查询条件的类型

    -->

    <select id="selectUserById"

            resultType="com.ys.po.User" parameterType="int">

        <!-- 这里和普通的sql 查询语句差不多,后面的 #{id}表示占位符,里面不一定要写id,写啥都可以,但是不要空着 -->

        select * from user where id = #{id1}

    </select>

    

    

    

    <!-- 根据 id 更新 user 表的数据 -->

    <update id="updateUserById" parameterType="com.ys.po.User">

        update user u

            <!-- <set>

                <if test="username != null and username != ‘‘">

                    u.username = #{username},

                </if>

                <if test="sex != null and sex != ‘‘">

                    u.sex = #{sex}

                </if>

            </set> -->

            <trim prefix="set" suffixOverrides=",">

                <if test="username != null and username != ‘‘">

                    u.username = #{username},

                </if>

                <if test="sex != null and sex != ‘‘">

                    u.sex = #{sex},

                </if>

            </trim>

        

         where id=#{id}

    </update>

    

    

    <!-- 向 user 表插入一条数据 -->

    <insert id="insertUser" parameterType="com.ys.po.User">

        <!-- 将插入的数据主键返回到 user 对象中

             keyProperty:将查询到的主键设置到parameterType 指定到对象的那个属性

             select LAST_INSERT_ID():查询上一次执行insert 操作返回的主键id值,只适用于自增主键

             resultType:指定 select LAST_INSERT_ID() 的结果类型

             order:AFTER,相对于 select LAST_INSERT_ID()操作的顺序

         -->

        <selectKey keyProperty="id" resultType="int" order="AFTER">

            select LAST_INSERT_ID()

        </selectKey>

        insert into user(username,sex,birthday,address)

            value(#{username},#{sex},#{birthday},#{address})

    </insert>

    

    

    

    <!-- 根据 id 删除 user 表的数据 -->

    <delete id="deleteUserById" parameterType="int">

        delete from user where id=#{id}

    </delete>

    

</mapper>

  

回到顶部

4、测试


1

2

3

4

5

6

7

8

9

//根据id查询user表数据

    @Test

    public void testSelectUserById() throws Exception{

        //获取mapper接口

        UserMapper userMapper = session.getMapper(UserMapper.class);

        User user = userMapper.selectUserById(1);

        System.out.println(user);

        session.close();

    }

  

回到顶部

5、批量加载映射文件


1

2

3

4

5

6

<mappers>

       <!--批量加载mapper

          指定 mapper 接口的包名,mybatis自动扫描包下的mapper接口进行加载

         -->

       <package name="com.ys.mapper"/>

</mappers>

  

 

回到顶部

6、注意 

  1、UserMapper 接口必须要和 UserMapper.xml 文件同名且在同一个包下,也就是说 UserMapper.xml 文件中的namespace是UserMapper接口的全类名

  

  2、UserMapper接口中的方法名和 UserMapper.xml 文件中定义的 id 一致

  3、UserMapper接口输入参数类型要和 UserMapper.xml 中定义的 parameterType 一致

  4、UserMapper接口返回数据类型要和 UserMapper.xml 中定义的 resultType 一致

原文地址:https://www.cnblogs.com/zhoanghua/p/9292197.html

时间: 2024-11-05 11:53:24

六、通过mapper接口加载映射文件的相关文章

mybatis 详解(六)------通过mapper接口加载映射文件

通过 mapper 接口加载映射文件,这对于后面 ssm三大框架 的整合是非常重要的.那么什么是通过 mapper 接口加载映射文件呢? 我们首先看以前的做法,在全局配置文件 mybatis-configuration.xml 通过 <mappers> 标签来加载映射文件,那么如果我们项目足够大,有很多映射文件呢,难道我们每一个映射文件都这样加载吗,这样肯定是不行的,那么我们就需要使用 mapper 接口来加载映射文件 以前的做法: 改进做法:使用 mapper 接口来加载映射文件 1.定义

mybatis学习之路(三)别名(typeAliases)mapper接口加载映射文件

一.mybatis默认支持别名 别名 映射的类型 _byte byte _long long _short short _int int _integer int _double double _float float _boolean boolean string String byte Byte long Long short Short int Integer integer Integer double Double float Float boolean Boolean date Da

(三)mybatis之通过接口加载映射配置文件

1.1  需求 通过(二)在全局配置文件 mybatis-configuration.xml 通过 <mappers> 标签来加载映射文件,那么如果我们项目足够大,有很多映射文件呢,难道我们每一个映射文件都这样加载吗,这样肯定是不行的,那么我们就需要使用 mapper 接口来加载映射文件 以前的做法: 改进做法:使用 mapper 接口来加载映射文件 1.2.2 引包 本例中使用maven构造项目,所以只需配置依赖即可引相应的包. pom.xml <project xmlns="

Android studio 使用心得(六)—android studio 如何加载.so文件

之前一直没怎么注意,以为.so文件android为像eclipse一样直接加载,但是直到昨天我在android studio上调试公司项目推送消息的时候,才发现,.so文件原来没有加载成功. 可能之前  Android studio 使用心得(三)—从Eclipse迁移到Android这篇文章我是用Demo4来做例子,里面并没有引用.so文件,所以大家按照这篇文章去迁移项目的时候,会遇到问题.昨天我网上找了一下关于android studio gradle 加载.so文件的文章,发现大多还停留在

[MyBean说明书]-添加IApplicationContextEx01接口手动加载库文件

主控台接口实现了IApplicationContextEx01接口,可以手动执行加载DLL和配置文件,具体使用方法可以参见DEMO(samples\manualLoadLib)   IApplicationContextEx01 = interface(IInterface) ['{10009F97-1949-476D-9CE1-1AF003B47DCB}'] /// <summary> /// 加载库文件 /// </summary> /// <returns> //

java加载properties文件的六中基本方式实现

java加载properties文件的方式主要分为两大类:一种是通过import java.util.Properties类中的load(InputStream in)方法加载: 另一种是通过import java.util.ResourceBundle类的getBundle(String baseName)方法加载. 注意:一定要区分路径格式 实现代码如下: 1 package com.util; 2 3 import java.io.FileInputStream; 4 import jav

Android运行时ART加载OAT文件的过程分析

在前面一文中,我们介绍了Android运行时ART,它的核心是OAT文件.OAT文件是一种Android私有ELF文件格式,它不仅包含有从DEX文件翻译而来的本地机器指令,还包含有原来的DEX文件内容.这使得我们无需重新编译原有的APK就可以让它正常地在ART里面运行,也就是我们不需要改变原来的APK编程接口.本文我们通过OAT文件的加载过程分析OAT文件的结构,为后面分析ART的工作原理打基础. 老罗的新浪微博:http://weibo.com/shengyangluo,欢迎关注! OAT文件

JVM加载class文件的原理机制

JVM加载class文件的原理机制 1.Java中的所有类,必须被装载到jvm中才能运行,这个装载工作是由jvm中的类装载器完成的, 类装载器所做的工作实质是把类文件从硬盘读取到内存中 2.java中的类大致分为三种:     1.系统类     2.扩展类     3.由程序员自定义的类 3.类装载方式,有两种     1.隐式装载, 程序在运行过程中当碰到通过new 等方式生成对象时,隐式调用类装载器加载对应的类到jvm中,     2.显式装载, 通过class.forname()等方法,

如何在SCENEKIT使用SWIFT RUNTIME动态加载COLLADA文件

问题:今天接到一个项目,负责弄需求的美眉跟我讲能不能做一个原型能够加载Collada文件,流程如下: 用户用app下载Collada 压缩包(如内购项目) 压缩包解压 展示Collada文件里的内容 我开始google各种能够快速搞定需求的工具以及类库,看了下Unity3D,感觉这胖子挺臃肿的,对胖子没兴趣.苹果的SceneKit好像做3D还不错,性能高还是原生,原生态的东西味道应该不错,下面有食用方法. 步骤一: 打开不是给人看的Apple Doucmentation,经过两眼球左右互搏后有重