1.Mapper.xml里的语法

1.1 namespace, resultType, parameterType

namespace, 写的是对应接口/mapper的全路径名

resultType,写的是结果集的一个item的类型。例如结果集是List<com.xxx.User>, resultType要写“resultType=com.xxx.User”

parameterType:参数类型,同样要写类的全路径名。

Mybatis - Mapper.xml配置文档解析_xml

 

 

 

1.2 CRUD语法

Mybatis - Mapper.xml配置文档解析_xml_02

 

 

 

1.3 Mapper.xml取参数的语法

  • Map传递参数,直接在sq|中取出key即可! [parameterType="map"]
  • 对象传递参数,直接在sq|中取对象的属性即可! [parameterType="Object"]
  • 只有一个基本类型参数的情况下,可以直接在sq|中取到!
  • 多个参数用Map,或者注解!

 

例1:当pojo属性过多,可以用map传递参数

Mybatis - Mapper.xml配置文档解析_xml_03 

 

Mybatis - Mapper.xml配置文档解析_路径名_04

 Mybatis - Mapper.xml配置文档解析_设置别名_05

 

1.4 结果集映射 resultMap,解决属性和列名不一致问题

推荐方法: 

Mybatis - Mapper.xml配置文档解析_路径名_06

 

 

Mybatis - Mapper.xml配置文档解析_路径名_07

 

 

其他方法:不推荐

修改mapper里的sql语句,运用as语法设置别名,把列名变成和属性名一样的。

Mybatis - Mapper.xml配置文档解析_传递参数_08

 

 

 

2.代码里的语法 

2.1 “增删改” 必须提交事务,否则修改不成功

下图是测试代码,和JDBC里的Connection.commit()类似

Mybatis - Mapper.xml配置文档解析_传递参数_09

 

2.2 模糊查询怎么写

Mybatis - Mapper.xml配置文档解析_传递参数_10