Mybatis sql映射resultMap设置

1. mapper.xml的配置

column是查询结果的列名
property是pojo属性名


        
        
        


2. mapper接口方法的定义

这个其实没啥区别,resultMap就是手动将记录封装成对象。
public Orders findOrderById(Integer id);

你可能感兴趣的:(Mybatis sql映射resultMap设置)