mybatis-mp - 亮点八:mybatis-xml returnType 的 ORM 映射
mybatis-mp - 亮点八: 可对 xml 实体类返回 进行自动映射:
当你需要写一个很复杂的sql时,你可能会选择用xml 去做例如:
<select id="findUserList" returnType="User">
select id,user_name as userName,nick_name as nickName,password from user where xx and xx2 and xx3 ........
</select>
如上:你可能需要自己 一个一个 as userName , as nickName 之类的,是不是很麻烦
现在好,只要接入 mybatis-mp;这些完全不用写了,如下:
<select id="findUserList" returnType="User">
select id,user_name,nick_name,password from user where xx and xx2 and xx3 ........
</select>
自动帮你进行了映射,而且不仅仅支持实体,还支持VO;省去了很多麻烦步骤!