91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MyBatis的SUM映射問題怎么解決

發布時間:2022-02-07 15:22:36 來源:億速云 閱讀:326 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“MyBatis的SUM映射問題怎么解決”,內容詳細,步驟清晰,細節處理妥當,希望這篇“MyBatis的SUM映射問題怎么解決”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

SUM映射問題

當我們根據類別進行統計,返回的數據類型為HashMap<String,Object>,獲取數值類型,容易報

java.math.BigDecimal cannot be cast to java.lang.Integer

場景如下:

// Mapper層
<select id="selectInfoByTest" resultType="map">
    SELECT SUM(flag) as flags,taskid FROM qcdata GROUP BY taskid
</select>
// 接口
List<HashMap<String, Object>> selectInfoByTest();
 
// 調用代碼
List<HashMap<String, Object>> result = qcDao.selectInfoByTest();
int flags=(Integer)result.get(0).get("flags"); // 報錯
return JSONResult.ok(flags);

原因

sql中的 sum() 返回返回值在mybatis中是作為BigDecimal來返回的,而不能用Integer來接收

解決方式

可以轉換為字符串,然后再轉換為int類型,在轉換過程中,不能使用(String)這種方式強轉,本不是String類型,可以使用toString(),也可以使用String.valueOf(),更簡單的方式是用空字符串來轉換;

    public JSONResult test() {
        List<HashMap<String, Object>> result = qcDao.selectInfoByTest();  
        // toString
        int flags=Integer.parseInt(result.get(0).get("flags").toString()); 
        // String.valueOf
        int 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代碼

 <select id="pieChart"    resultType="map">
       select   sum(com.thinkmoney*ord.commnumber)  as totalPrice , com.category as  category  from commodity com,orders ord
        where com.commid=ord.commid and ord.orderstatus=1
        GROUP BY com.category
 </select>

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;
	private  Commodity commodity;
	private  BigDecimal  totalPrice;

controller

 /**
     * 管理員首頁 餅圖
     * */
    @GetMapping("/echars/piechart")
    public String piechart(HttpSession  session,HttpServletRequest request){
        List<HashMap<String,Object>>  result =ordersService.pieChart();
        List<String>  totalPriceList= new ArrayList<String>();
        List<String>  categoryList= new ArrayList<String>();
        for( Map<String, Object> 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";
    }

讀到這里,這篇“MyBatis的SUM映射問題怎么解決”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

开远市| 鄄城县| 外汇| 台前县| 武平县| 师宗县| 阳泉市| 延寿县| 武宁县| 泗水县| 西丰县| 五台县| 大兴区| 晋江市| 松江区| 宁夏| 北川| 资源县| 东阳市| 大关县| 黄骅市| 建宁县| 曲松县| 东乡县| 花垣县| 太白县| 印江| 兴化市| 嵩明县| 江源县| 赣州市| 武义县| 拉萨市| 称多县| 玛纳斯县| 从化市| 新邵县| 东源县| 郑州市| 庄河市| 淄博市|