MyBatis的SUM映射问题及解决

目录

  • SUM映射问题
    • 原因
    • 解决方式
  • sum 返回映射问题(sum报表统计接口返回)
    • MyBatis sum 返回值映射

SUM映射问题 当我们根据类别进行统计,返回的数据类型为HashMap,获取数值类型,容易报
java.math.BigDecimal cannot be cast to java.lang.Integer
场景如下:
// Mapper层SELECT SUM(flag) as flags,taskid FROM qcdata GROUP BY taskid// 接口List selectInfoByTest(); // 调用代码List result = qcDao.selectInfoByTest(); int flags=(Integer)result.get(0).get("flags"); // 报错return JSONResult.ok(flags);


原因
sql中的 sum() 返回返回值在mybatis中是作为BigDecimal来返回的,而不能用Integer来接收
【MyBatis的SUM映射问题及解决】
解决方式
可以转换为字符串,然后再转换为int类型,在转换过程中,不能使用(String)这种方式强转,本不是String类型,可以使用toString(),也可以使用String.valueOf(),更简单的方式是用空字符串来转换;
public JSONResult test() {List result = qcDao.selectInfoByTest(); // toStringint flags=Integer.parseInt(result.get(0).get("flags").toString()); // String.valueOfint flags2=Integer.parseInt(String.valueOf(result.get(0).get("flags"))); // 空字符串int flags3=Integer.parseInt(result.get(0).get("flags")+""); return JSONResult.ok(flags+flags2+flags3); }

需要注意的是,在强转之前最好判断一下是否为空,空字符串,类型是否匹配,避免强转失败;

sum 返回映射问题(sum报表统计接口返回)
MyBatis sum 返回值映射
mapper.xml代码
selectsum(com.thinkmoney*ord.commnumber)as totalPrice , com.category ascategoryfrom commodity com,orders ordwhere com.commid=ord.commid and ord.orderstatus=1GROUP BY com.category

pojo
private static final long serialVersionUID = 1L; /*** 订单id*/ private String id; /*** 订单编号*/ private String ordernumber; /*** 下单时间*/ private Date ordertime; /*** 商品名*/ private String commname; /*** 商品id*/private String commid; /*** 商品描述*/private String commdesc; /*** 购买数量*/ private Integer commnumber; /*** 商品单价*/ private BigDecimal price; /*** 收货地址*/ private String useraddress; /*** 订单状态 0未支付 1正常 2删除*/ private Integer orderstatus; /*** 收货人*/ private String username; /*** 收货人手机号*/ private String mobilephone; /*** 发货状态 0未发货 1已发货 2确认收货*/ private Integer kdstatus; /*** 快递编号*/ private String kdnumber; /*** 买家id*/ private String buyuserid; /*** 卖家id*/ private String selluserid; privateCommodity commodity; privateBigDecimaltotalPrice;

controller
/*** 管理员首页 饼图* */@GetMapping("/echars/piechart")public String piechart(HttpSessionsession,HttpServletRequest request){Listresult =ordersService.pieChart(); ListtotalPriceList= new ArrayList(); ListcategoryList= new ArrayList(); for( Map mapList : result ) {totalPriceList.add(mapList.get("totalPrice").toString()); categoryList.add(mapList.get("category").toString()); }session = request.getSession(); System.out.println("totalPriceList:"+totalPriceList+",categoryList:"+categoryList); session.setAttribute("totalPriceList",totalPriceList); session.setAttribute("categoryList",categoryList); return "/admin/echars/piechart"; }

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

    推荐阅读