我们在一对一操作,我们如果采用建立实体类关系的方式。
也就是在account类中有user属性,那么
<select id="findAll" resultType="account">
    select * from account;
</select>
这个原本的配置显然是不行的,因为account表中没有user的信息,
所以此时要创建resultMap。