mapper.xml resultType返回值问题
来源:9-2 加入购物车功能开发1
西瓜大师
2019-03-04
<select id="selectByUserId" parameterType="Integer" resultType="集合">
select
<include refid="Base_Column_List"/>
from mmall_cart where user_id=#{userId }
</select>
List<Cart> selectByUserId(Integer userId);
我这边想返回一个集合,请问resulttype该怎么写,之前写的是映射对象的全路径,因为字段有的对应不上,出现了如下问题
{
"status": 0,
"data": [
{
"id": 126,
"userId": null,
"productId": null,
"quantity": 3,
"checked": 1,
"createTime": null,
"updateTime": null
}
]
}
写回答
2回答
-
西瓜大师
提问者
2019-03-04
兄弟以后你看到我的问题就别回答了,回答的都是啥
00 -
geelylucky
2019-03-04
亲爱的同学,你好,我是geely老师的助教。
其实这种问题可以自行百度。https://blog.csdn.net/yamadeee/article/details/79774638
一定要和你的实体类的字段相对应,要不然怎么映射结果集?
00
相似问题