java中的基本数据类型 (不包括boolean):byte、 short、 int、 long、 float、 double、 char
Java中的包装类型(不包括Boolean):Byte、 Short、 Integer、 Long、Float、 Double、 Character
Java当中的字符串类型:String
Java工具类中的日期类型:java.util.Date
MySql当中的日期类型:java.sql.Date
在接口文件当中:
/**
* 当接口中的方法形参数只有一个(单个参数),并且参数的数据类型都是简单类型(上面列出的几种)。
* 根据id查询、name查询、birth查询、sex查询
*/
List
List
List
List
在映射文件中:
select * from t_student where id = #{id}
select * from t_student where name = #{name, javaType=String, jdbcType=VARCHAR}
select * from t_student where birth = #{birth}
select * from t_student where sex = #{sex}
几点说明:
1、在#{}中所写的内容任意,但最好是见名知意;
2、在
3、其实SQL映射⽂件中的配置⽐较完整的写法是:
select * from t_student where name = #{name, javaType=String, jdbcType=VARCHAR}
其中sql语句中的javaType(Java实体类中属性的数据类型),jdbcType(MySql中对应字段的数据类型),以及select标签中的parameterType属性,都是⽤来帮助mybatis进⾏类型确定的。不过这些配置多数是可以省略的。因为mybatis它有强⼤的⾃动类型推断机制。
javaType:可以省略
jdbcType:可以省略
parameterType:可以省略
接口中的方法如下:
/**
* 保存学生信息,通过Map参数。以下是单个参数。但是参数的类型不是简单类型。是Map集合。
* @param map
* @return
*/
int insertStudentByMap(Map
在映射文件当中:
insert into t_student(id,name,age,sex,birth,height) values(null,#{姓名},#{年龄},#{性别},#{生日},#{身高})
测试代码:
@Test
public void testInsertStudentByMap(){
SqlSession sqlSession = SqlSessionUtil.openSession();
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
Map
map.put("姓名", "赵六");
map.put("年龄", 20);
map.put("身高", 1.81);
map.put("性别", '男');
map.put("生日", new Date());
mapper.insertStudentByMap(map);
sqlSession.commit();
sqlSession.close();
}
接口中的方法:
/**
* 保存学生信息,通过POJO参数。Student是单个参数。但是不是简单类型。
* @param student
* @return
*/
int insertStudentByPOJO(Student student);
映射文件中:
insert into t_student(id,name,age,sex,birth,height) values(null,#{name},#{age},#{sex},#{birth},#{height})
测试代码:
@Test
public void testInsertStudentByPOJO(){
SqlSession sqlSession = SqlSessionUtil.openSession();
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
// POJO对象
Student student = new Student();
student.setName("张飞");
student.setAge(50);
student.setSex('女');
student.setBirth(new Date());
student.setHeight(10.0);
mapper.insertStudentByPOJO(student);
sqlSession.commit();
sqlSession.close();
}
接口中的方法:
/**
* 这是多参数。
* 根据name和sex查询Student信息。
* 如果是多个参数的话,mybatis框架底层是怎么做的呢?
* mybatis框架会自动创建一个Map集合。并且Map集合是以这种方式存储参数的:
* map.put("arg0", name);
* map.put("arg1", sex);
* ...
* 和
* map.put("param1", name);
* map.put("param2", sex);
* ...
* 以上两种形式同时存在,所以出现了可以混合使用的情况.
* @param name
* @param sex
* @return
*/
List
映射文件中:
select * from t_student where name = #{arg0} and sex = #{param2}
测试代码:
@Test
public void testSelectByNameAndSex(){
SqlSession sqlSession = SqlSessionUtil.openSession();
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
List
students.forEach(student -> System.out.println(student));
sqlSession.close();
}
使用@Param注解(命名参数)
接口文件中:
/**
* Param注解。
* mybatis框架底层的实现原理:
* map.put("name", name);
* map.put("sex", sex);
*
* @param name
* @param sex
* @return
*/
List
映射文件中:
select * from t_student where name = #{name} and sex = #{sex}
测试代码:
@Test
public void testSelectByNameAndSexTwo(){
SqlSession sqlSession = SqlSessionUtil.openSession();
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
List
students.forEach(student -> System.out.println(student));
sqlSession.close();
}