java.lang.UnsupportedOperationException: null

报错代码提示: 

java.lang.UnsupportedOperationException: null

 

1.错误原因

result 返回类型错误,resultType返回的类型是每条数据的数据类型

<select id="selectAllCostTotalMoney" resultType="list">

2.将类型改成需要的类型即可

<select id="selectAllCostTotalMoney" resultType="double">

 

posted on 2020-04-16 10:29  arsn  阅读(5484)  评论(1编辑  收藏  举报

导航