java.lang.ClassCastException: java.math.BigDecimal cannot be cast to java.lang.Long

本文介绍了一个关于Java中BigDecimal类型与Long类型转换的问题,详细解析了在使用Hibernate进行数据库查询时出现的ClassCastException异常原因,并给出了正确的类型转换解决方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1. 错误:

严重: Servlet.service() for servlet [spring] in context with path [] threw exception [Request processing failed; nested exception is java.lang.ClassCastException: java.math.BigDecimal cannot be cast to java.lang.Long] with root cause
java.lang.ClassCastException: java.math.BigDecimal cannot be cast to java.lang.Long
at com.tcl.component.mobile.biz.service.impl.TypeValueServiceImpl.getTypeValueList(TypeValueServiceImpl.java:61)
at com.tcl.application.mobile.web.controller.ConfigController.typeValueList(ConfigController.java:352)
at com.tcl.application.mobile.web.controller.ConfigController$$FastClassByCGLIB$$f19fa2e6.invoke(<generated>)
at net.sf.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)

2. 代码如下:

List<Long> countList = dao.executeSelectSql(sqlCount);
        Long typeValueCount = (Long) countList.get(0);


@Override
    public <T> List<T> executeSelectSql(final String sql, final Object... params) {
        return ht.execute(new HibernateCallback<List<T>>() {
            @Override
            public List<T> doInHibernate(Session session) throws HibernateException, SQLException {
                SQLQuery sqlQuery = session.createSQLQuery(sql);
                if (ArrayUtil.isNotEmpty(params)) {
                    for (int i = 0; i < params.length; i++) {
                        sqlQuery.setParameter(i, params[i]);
                    }
                }
                return sqlQuery.list();
            }
        });
    }


3. 修改正确后的代码:

List<BigDecimal> countList = dao.executeSelectSql(sqlCount);
        Long typeValueCount = CastUtil.castLong(countList.get(0));


4. 为什么要转成BigDecimal?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值