<select id="findById" resultType="cn.tedu.mybatis.entity.User"> SELECT id, username, password, age, phone, email FROM t_user WHERE id=#{id} <select>
> 执行查询时,`<select>`节点中必须配置`resultType`属性(或者是`resultMap`属性)。
以上方法执行时,如果查询到匹配的数据,则返回有效的User对象,如果没有匹配的数据,则返回null。
Linux公社的RSS地址:https://www.linuxidc.com/rssFeed.aspx