MyBatis详细讲解DAO代理的使用

DAO代理实现数据库操作

1、去掉Dao接口实现类

MyBatis详细讲解DAO代理的使用_第1张图片

2、getMapper获取代理对象

只需调用 SqlSession 的 getMapper()方法,即可获取指定接口的实现类对 象。该方法的参数为指定 Dao 接口类的 class 值。

SqlSession session = factory.openSession();
StudentDao dao = session.getMapper(StudentDao.class);

使用工具类

StudentDao studentDao = 
MyBatisUtil.getSqlSession().getMapper(StudentDao.class);

getMapper()创建的对象,是代替我们自己创建的 StudentDaoImpl 类

3、使用 Dao 代理对象方法执行 sql 语句

select方法进行查询

@Test
public void testSelect() throws IOException {
 final List studentList = studentDao.selectStudents();
 studentList.forEach( stu -> System.out.println(stu));
}

insert方法进行插入

@Test
public void testInsert() throws IOException {
 Student student = new Student();
 student.setId(1006);
 student.setName("林浩");
 student.setEmail("[email protected]");
 student.setAge(26);
 int nums = studentDao.insertStudent(student);
 System.out.println("使用 Dao 添加数据:"+nums);
}

4、深入理解参数

从 java 代码中把参数传递到 mapper.xml 文件。

parameterType

parameterType: 接口中方法参数的类型, 类型的完全限定名或别名。这个属 性是可选的,因为 MyBatis 可以推断出具体传入语句的参数,默认值为未设置 (unset)。接口中方法的参数从 java 代码传入到 mapper 文件的 sql 语句。

  • int 或 java.lang.Integer
  • hashmap 或 java.util.HashMap
  • list 或 java.util.ArrayList
  • student 或 com.bjpowernode.domain.Student

select id,name,email,age from student where id=#{studentId}

#{studentId} , studentId 是自定义的变量名称,和方法参数名无关。

测试方法

@Test
public void testSelectById(){
 //一个参数 
 Student student = studentDao.selectById(1005);
 System.out.println("查询 id 是 1005 的学生:"+student);
}

使用@Param

当 Dao 接口方法多个参数,需要通过名称使用参数。 在方法形参前面加 入@Param(“自定义参数名”),mapper 文件使用#{自定义参数名}。

例如定义 List selectStudent( @Param(“personName”) 

String name ) { … } 

mapper 文件 select * from student where name = 

#{ personName}

接口方法

List selectMultiParam(@Param("personName") String name,
 @Param("personAge") int age);

Mapper文件

测试方法

@Test
public void testSelectMultiParam(){
 List stuList = studentDao.selectMultiParam("李力",20);
 stuList.forEach( stu -> System.out.println(stu));
}

使用对象

使用 java 对象传递参数, java 的属性值就是 sql 需要的参数值。 每一个属性就是一个参数。

语法格式: #{ property,javaType=java 中数据类型名

jdbcType=数据类型名称 } javaType, jdbcType 的类型 MyBatis 可以检测出来,一般不需要设置。常用格式 #{ property }

MyBatis详细讲解DAO代理的使用_第2张图片

 创建保存参数值的对象 QueryParam

package com.bjpowernode.vo; 
public class QueryParam {
 private String queryName;
 private int queryAge;
 //set ,get 方法
}

接口方法

List selectMultiObject(QueryParam queryParam);

Mapper文件

测试方法

@Test
public void selectMultiObject(){
 QueryParam qp = new QueryParam();
 qp.setQueryName("李力");
 qp.setQueryAge(20);
 List stuList = studentDao.selectMultiObject(qp);
 stuList.forEach( stu -> System.out.println(stu));
}

到此这篇关于MyBatis详细讲解DAO代理的使用的文章就介绍到这了,更多相关MyBatis DAO代理内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(MyBatis详细讲解DAO代理的使用)