1.控制层
@GetMapping("getName") public String getName1(@RequestBody List<Map<String,Object>> mapList) { dictService.add(mapList); return "dda"; }
2.业务层接口
3.业务层实现类
4.mapper
5.xml
<insert id="add"> insert into t_test(idd,name,age) values <foreach collection="mapList" item="item" separator=","> (#{item.id},#{item.name},#{item.age}) </foreach> </insert>
6.运行结果
7.postman传参格式
文章来源:https://www.toymoban.com/news/detail-419348.html
[{"id":127,"age":12,"name":30},{"id":232,"age":12,"name":30}] 文章来源地址https://www.toymoban.com/news/detail-419348.html
到了这里,关于postman传参之List<Map<String,Object>>后台是map的集合的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!