mybatis--mapper映射文件配置之select,resultMap

介绍了insert、update、delete的用法,本篇将介绍select、resultMap的用法。select无疑是我们最常用,也是最复杂的,mybatis通过resultMap能帮助我们很好地进行高级映射。下面就开始看看select 以及 resultMap的用法:

先看select的配置吧:

<select
        <!--  1. id (必须配置)
        id是命名空间中的唯一标识符,可被用来代表这条语句。 
        一个命名空间(namespace) 对应一个dao接口, 
        这个id也应该对应dao里面的某个方法(相当于方法的实现),因此id 应该与方法名一致  -->
     
     id="selectPerson"
     
     <!-- 2. parameterType (可选配置, 默认为mybatis自动选择处理)
        将要传入语句的参数的完全限定类名或别名, 如果不配置,mybatis会通过ParameterHandler 根据参数类型默认选择合适的typeHandler进行处理
        parameterType 主要指定参数类型,可以是int, short, long, string等类型,也可以是复杂类型(如对象) -->
     parameterType="int"
     
     <!-- 3. resultType (resultType 与 resultMap 二选一配置)
         resultType用以指定返回类型,指定的类型可以是基本类型,可以是java容器,也可以是javabean -->
     resultType="hashmap"
     
     <!-- 4. resultMap (resultType 与 resultMap 二选一配置)
         resultMap用于引用我们通过 resultMap标签定义的映射类型,这也是mybatis组件高级复杂映射的关键 -->
     resultMap="personResultMap"
     
     <!-- 5. flushCache (可选配置)
         将其设置为 true,任何时候只要语句被调用,都会导致本地缓存和二级缓存都会被清空,默认值:false -->
     flushCache="false"
     
     <!-- 6. useCache (可选配置)
         将其设置为 true,将会导致本条语句的结果被二级缓存,默认值:对 select 元素为 true -->
     useCache="true"
     
     <!-- 7. timeout (可选配置) 
         这个设置是在抛出异常之前,驱动程序等待数据库返回请求结果的秒数。默认值为 unset(依赖驱动)-->
     timeout="10000"
     
     <!-- 8. fetchSize (可选配置) 
         这是尝试影响驱动程序每次批量返回的结果行数和这个设置值相等。默认值为 unset(依赖驱动)-->
     fetchSize="256"
     
     <!-- 9. statementType (可选配置) 
         STATEMENT,PREPARED 或 CALLABLE 的一个。这会让 MyBatis 分别使用 Statement,PreparedStatement 或 CallableStatement,默认值:PREPARED-->
     statementType="PREPARED"
     
     <!-- 10. resultSetType (可选配置) 
         FORWARD_ONLY,SCROLL_SENSITIVE 或 SCROLL_INSENSITIVE 中的一个,默认值为 unset (依赖驱动)-->
     resultSetType="FORWARD_ONLY">
复制代码

配置看起来总是这么多,不过实际常用的配置也就那么几个, 根据自己的需要吧,上面都已注明是否必须配置。

下面还是上个demo及时练练手吧:

------------------------------------------------------------------------下面是针对select 的练手demo---------------------------------------------------------------------------------------

数据库:新增两张表(t_course, t_student)

t_course:

t_student:

其中,1个student可选择多个course进行学习。

我们还是拿上篇文章的demo, 继续写:

增加后,项目目录如下所示:

 

Course.java:

  View Code

Student.java:

  View Code

CourseDao.java:

  View Code

StudentDao.java:

  View Code

courseDao.xml:

按 Ctrl+C 复制代码
按 Ctrl+C 复制代码

CourseDaoTest.java:

  View Code

上面的示例,我们针对course, 简单演示了 select的用法, 不过有个问题值得思考: 一个student可以对应多个course,  那么,在mybatis中如何处理这种一对多, 甚至于多对多,一对一的关系呢?

这儿,就不得不提到 resultMap 这个东西, mybatis的resultMap功能可谓十分强大,能够处理复杂的关系映射, 那么resultMap 该怎么配置呢? 别急,这就来了:

resultMap的配置:

复制代码
<!-- 
        1.type 对应类型,可以是javabean, 也可以是其它
        2.id 必须唯一, 用于标示这个resultMap的唯一性,在使用resultMap的时候,就是通过id指定
     -->
    <resultMap type="" id="">
    
        <!-- id, 唯一性,注意啦,这个id用于标示这个javabean对象的唯一性, 不一定会是数据库的主键(不要把它理解为数据库对应表的主键) 
            property属性对应javabean的属性名,column对应数据库表的列名
            (这样,当javabean的属性与数据库对应表的列名不一致的时候,就能通过指定这个保持正常映射了)
        -->
        <id property="" column=""/>
        
        <!-- result与id相比, 对应普通属性 -->    
        <result property="" column=""/>
        
        <!-- 
            constructor对应javabean中的构造方法
         -->
        <constructor>
            <!-- idArg 对应构造方法中的id参数 -->
            <idArg column=""/>
            <!-- arg 对应构造方法中的普通参数 -->
            <arg column=""/>
        </constructor>
        
        <!-- 
            collection,对应javabean中容器类型, 是实现一对多的关键 
            property 为javabean中容器对应字段名
            column 为体现在数据库中列名
            ofType 就是指定javabean中容器指定的类型
        -->
        <collection property="" column="" ofType=""></collection>
        
        <!-- 
            association 为关联关系,是实现N对一的关键。
            property 为javabean中容器对应字段名
            column 为体现在数据库中列名
            javaType 指定关联的类型
         -->
        <association property="" column="" javaType=""></association>
    </resultMap>
复制代码

好啦,知道resutMap怎么配置后,咱们立即接着上面的demo来练习一下吧:

------------------------------------------------------------------下面是用resultMap处理一对多关系的映射的示例-------------------------------------------------------------

一个student对应多个course, 典型的一对多,咱们就来看看mybatis怎么配置这种映射吧:

studentDao.xml:

  View Code

StudentDaoTest.java:

  View Code

 

相信通过以上demo, 大家也能够使用mybatis的select 和 resultMap的用法了。上面demo只演示了一对多的映射,其实多对一、多对多也与它类似,所以我就没演示了,有兴趣的可以自己动手再做做。

好啦,本次就写到这儿了。(PS,生病一周了,所以到现在才更新博客)。

另附上demo, 需要的童鞋可以前往下载:

demo 下载地址:http://pan.baidu.com/s/1qWjsDzA

转载地址:http://www.cnblogs.com/dongying/p/4073259.html

### 回答1: Mybatis-PlusMybatis的增强工具,它可以简化Mybatis的开发流程,提高开发效率。在使用Mybatis-Plus时,我们需要配置mapper.xml文件,这个文件是用来映射数据库表和Java对象的。 在配置mapper.xml文件时,我们需要定义SQL语句和参数映射关系。具体来说,我们需要定义select、insert、update和delete等操作的SQL语句,并且将参数映射到SQL语句。此外,我们还需要定义resultMap,用来将查询结果映射到Java对象。 在Mybatis-Plus,我们可以使用注解来代替mapper.xml文件,这样可以更加简化开发流程。但是,在一些复杂的场景下,仍然需要使用mapper.xml文件来进行配置。 ### 回答2: Mybatis-plusMybatis的增强工具,在Mybatis的基础上扩展了更多的功能。它的使用相对简单,通过一些配置可以实现快速开发。 mybatis-plus配置mapper.xml主要有以下几步: 1.引入依赖 在pom.xml加入如下依赖 ``` <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.x.x</version> </dependency> ``` 2.配置数据源 在application.properties添加数据库连接信息 ``` spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.url=jdbc:mysql://localhost:3306/test?useSSL=false&useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC spring.datasource.username=root spring.datasource.password=root ``` 3.配置mapper.xml 在resources/mapper目录下,创建mapper.xml文件,如UserMapper.xml,并在application.properties添加mapper文件的路径 ``` mybatis-plus.mapper-locations=classpath:mapper/*Mapper.xml ``` 在mapper.xml文件,使用mybatis-plus提供的标签来进行增删改查操作。 例如: ``` <?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.example.demo.dao.UserMapper"> <select id="selectById" resultType="com.example.demo.entity.User"> select * from user where id=#{id} </select> <select id="selectAll" resultType="com.example.demo.entity.User"> select * from user </select> <insert id="insert" parameterType="com.example.demo.entity.User"> insert into user(name,age) values(#{name},#{age}) </insert> <update id="updateById" parameterType="com.example.demo.entity.User"> update user set name=#{name},age=#{age} where id=#{id} </update> <delete id="deleteById" parameterType="int"> delete from user where id=#{id} </delete> </mapper> ``` 4.编写实体类 mybatis-plus使用实体类来完成对象关系映射,所以需要编写实体类,例如: ``` @Data public class User { private Integer id; private String name; private Integer age; } ``` 实体类需要添加@Data注解以及getter和setter方法。 5.编写Mapper接口 创建UserMapper接口,并继承BaseMapper接口,例如: ``` public interface UserMapper extends BaseMapper<User> { } ``` BaseMapper类提供了基本的增删改查接口。 6.使用mapper 在service层注入UserMapper,可以使用mapper提供的方法,例如: ``` @Service public class UserServiceImpl implements UserService { @Autowired private UserMapper userMapper; @Override public User selectById(Integer id) { return userMapper.selectById(id); } @Override public List<User> selectAll() { return userMapper.selectList(null); } @Override public int insert(User user) { return userMapper.insert(user); } @Override public int updateById(User user) { return userMapper.updateById(user); } @Override public int deleteById(Integer id) { return userMapper.deleteById(id); } } ``` 通过以上步骤,就可以完成mybatis-plusmapper.xml配置。 ### 回答3: Mybatis-Plus 是一款基于 Mybatis 对其进行了增强的工具,通过简化 Mybatis配置,提供了许多方便实用的功能,如自动生成代码、分页插件、多租户支持等。 在 Mybatis Mapper 配置文件定义 SQL 的地方。在 Mybatis-Plus 也有相应的配置文件,称为 Mapper XML,它是直接使用 MybatisMapper 配置文件,只是在此基础上增加了一些关键字和标签用于支持额外的功能。Mapper XML 的使用方式与 MybatisMapper 配置文件一样,只是包含了更多的功能。 在 Mybatis-Plus 使用 Mapper XML 首先需要在项目配置 Mybatis-Plus,在 pom.xml 文件添加对 Mybatis-Plus 的依赖。然后在 Spring Boot 配置文件 application.yml 添加 Mybatis-Plus配置项,如下所示: ``` mybatis-plus: mapper-locations: classpath:/mappers/**/*.xml # Mapper XML 文件所在目录 ``` 其mapper-locations 配置项指定了 Mapper XML 文件所在目录,可以通过通配符 ** 来匹配所有子目录Mapper XML 文件。在项目,可以将 Mapper XML 文件放到 resources/mappers 目录下,然后在 Mybatis-Plus配置指定即可。 在 Mapper XML 文件,我们可以定义 SQL 语句,并使用 Mybatis-Plus 提供的关键字和标签来增强 SQL 的功能。例如,我们可以使用 select 标签定义一个查询 SQL 语句,使用 where 标签定义查询条件: ``` <select id="selectById" resultType="Blog"> select * from blog where id = #{id} </select> ``` 在 Mapper XML ,我们还可以使用 Mybatis-Plus 提供的关键字和标签来实现更多的功能,例如分页插件、自定义 SQL 语句等。使用 Mybatis-Plus 配置 Mapper XML 可以大大简化 SQL 的编写,提高代码的可维护性。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值