一、Mybatis参数
Mybatis是一个优秀的持久层框架,在使用过程中,我们难免会使用到各种参数。其中之一就是mybatislist参数。但是,首先需要了解mybatis的参数类型。
mybatis的参数可以分为以下三种:
1、基本类型:如int、double、float等
2、POJO:持久化Java对象
3、Map:键值对集合
同时,在mybatis的参数中也可能会出现多个参数,如何解决?
这就需要用到mybatis的Param注解。使用Param注解后,mybatis可以识别多个参数。例如:
public class User{ private int age; private String name; } public interface UserDao{ User getUserByNameAndAge(@Param("name") String name, @Param("age") int age); }
二、Mybatislist为空判断
当mybatislist参数为空时,我们需要根据情况做出相应的处理:
1、在xml中判断
使用mybatis的<if>标签,如下所示:
<select id="getUserList"> select * from user <if test="mybatislist != null and mybatislist.size() > 0"> where id in <foreach collection="mybatislist" item="id" separator=","> #{id,jdbcType=INTEGER} </foreach> </if> </select>
2、在Java代码中判断
使用StringUtils.isEmpty()方法即可:
public List<User> getUserList(List<Integer> mybatislist) { if (StringUtils.isEmpty(mybatislist)) { return new ArrayList<>(); } return userDao.getUserList(mybatislist); }
三、Mybatis两个参数查询
在mybatis的开发中,我们也会遇到需要两个参数的查询。这时需要在xml中使用<select>标签,并在其中定义参数类型。如下所示:
<select id="getUserByNameAndAge"> select * from user where name=#{name} and age=#{age} </select>
在Java代码中,相应的方法是这样的:
public User getUserByNameAndAge(String name,int age){ return userDao.getUserByNameAndAge(name,age); }
四、Mybatislist查询
mybatislist参数最常用的就是按照id批量查询数据,这种情况下,我们需要用到foreach标签,如下所示:
<select id="getUserList"> select * from user where id in <foreach collection="mybatislist" item="id" separator=","> #{id,jdbcType=INTEGER} </foreach> </select>
在Java代码中,相应的方法是这样的:
public List<User> getUserList(List<Integer> mybatislist) { return userDao.getUserList(mybatislist); }
五、Mybatis拼接参数
在mybatis中,我们有时需要将参数拼接成字符串。这时需要使用${}来引用参数,如下所示:
<select id="getUserNameById"> select name from user where id=${id} </select>
在Java代码中,相应的方法是这样的:
public String getUserNameById(int id) { return userDao.getUserNameById(id); }
六、Mybatis与
在mybatis中,我们可以使用AND关键字来连接多个条件,以实现复杂的查询需求。如下所示:
<select id="getUserByNameAndAge"> select * from user where name=#{name} and age=#{age} </select>
在Java代码中,相应的方法是这样的:
public User getUserByNameAndAge(String name,int age){ return userDao.getUserByNameAndAge(name,age); }
七、Mybatis操作数据库
在使用mybatis操作数据库时,我们需要注意几个问题:
1、事务的处理
mybatis的事务处理主要是通过Spring等框架来完成。
2、异常的处理
在进行数据库操作时,很容易会出现异常。为了避免程序因异常导致运行失败,我们需要在程序中对异常进行处理。
3、数据源的配置
在mybatis中,我们需要配置数据源。常用的数据源有三种:
1、JDBC数据源
2、C3P0数据源
3、Druid数据源
八、Mybatisplus多表
Mybatisplus是在mybatis基础上的增强版,提供了许多方便的操作。其可以简化mybatis多表查询的开发。实现多表查询的方式有两种:
1、使用多个数据源(适用于分表存储)
2、使用联表查询(适用于业务逻辑关联查询)
九、Mybatis的in查询
在mybatis中,我们可以使用in关键字来进行多条件查询。如下所示:
<select id="getUserList"> select * from user where id in <foreach collection="mybatislist" item="id" separator=","> #{id,jdbcType=INTEGER} </foreach> </select>
在Java代码中,相应的方法是这样的:
public List<User> getUserList(List<Integer> mybatislist) { return userDao.getUserList(mybatislist); }
十、Mybatis集成Spring
在将mybatis集成到Spring中时,需要进行以下步骤:
1、配置数据源
2、在配置文件中开启mybatis
3、扫描DAO
4、组装Mapper
在做好这些准备工作之后,就可以方便地在Spring中使用mybatis了。