Mybatis mapper.xml
Posted 熊云港
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis mapper.xml相关的知识,希望对你有一定的参考价值。
获取集合
List
list();
<mapper namespace="com.hd.dao.DeviceMapper">
<!--id: 对应java方法名-->
<!--resultType: 对应java方法返回类型-->
<select id="list" resultType="Device">
select * from tb_device
</select>
</mapper>
获取对象
User findUserByName(String name);
<mapper namespace="com.hd.dao.UserMapper">
<!--parameterType: 参数类型-->
<select id="findUserByName" parameterType="String" resultType="User">
select * from tb_user where name = #{name}
</select>
</mapper>
以上是关于Mybatis mapper.xml的主要内容,如果未能解决你的问题,请参考以下文章
干掉mapper.xml!MyBatis新特性动态SQL真香!