MyBatis基础入门《九》ResultMap自动匹配

MyBatis基础入门《九》ResultMap自动匹配

描述:

  Mybatis执行select查询后,使用ResultMap接收查询的数据结果。

 

实体类:TblClient.java

MyBatis基础入门《九》ResultMap自动匹配_第1张图片

 

接口:ClientMapper.java 

MyBatis基础入门《九》ResultMap自动匹配_第2张图片

 

xml文件:ClientMapper.xml

MyBatis基础入门《九》ResultMap自动匹配_第3张图片

  注意:  

    resultMap标签中,我注释掉了一行标签。 

    在