Spring + MyBatis配置详细讲解(3)

<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

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/12262.html