未解决的的问题
作者:互联网
传智健康项目
1. 在Controller层中构造出Date数据类型,传入Dao层时与mysql中的date字段类型不能匹配(也可能是mybatis的问题),查出的值始终为0
Service层
Date orderDate = orderSetting.getOrderDate();
long count = orderSettingDao.findCountByOrderDate(orderDate);
Dao层的mybatis配置文件
<select id="findCountByOrderDate" parameterType="date" resultType="long">
select count(id) from t_ordersetting where orderDate = #{orderDate};
</select>
标签:count,配置文件,Dao,mybatis,问题,Date,解决,orderDate 来源: https://www.cnblogs.com/java-six/p/16462749.html