Flutter开发App的未来及其在各行业的应用潜力分析
852
2023-02-07
Mybatis中返回Map的实现
在Mybatis中,我们通常会像下边这样用:
返回一个结果
User selectOne(User user);
select id,username,telphone from user where telphone=#{telphone} and password = #{password}
返回多个结果(其实这个和上边一样,只不过是查询条件的控制而已)
List
select id,username,telphone from user
我们只要将上边的resultType改为java.util.HashMap,这会有生成下边这样
Map selectList(User user);
select id,username,telphone from user where telphone=#{telphone} and password = #{password}
上这结果就是说,以User类的属性名为key,属性值为value。
当然,也可以查出来多条记录,将这个Map放进List中
List
select id,username,telphone from user
但是有时候我们想要这种结果,怎么办呢?
{
"01":{
username:"zhangsan",
telphone:"13000000000"
}
}
也就是我们要自定义一个Map
1.使用注解
@MapKey("id")
Map
select id,username,telphone from user where telphone=#{telphone} and password = #{password}
这个@MapKey的value写的就是User对象的一个属性
2.在xml文件中写上
HashMap
SELECT id as 'key', * as 'value', id,username,telphone from user where telphone=#{telphone} and password = #{password}
当然以上这两种方法,如果查出来是多条的话也会是List的形式
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~