批量添加商品类别
来源:7-3 商品类别批量添加后端开发
慕仙1388041
2017-10-08
为什么junit测试批量添加商品返回的影响行数为null 但是把返回值int改为Integer就不为null了
写回答
1回答
-
翔仔
2017-10-08
同学您好,仅根据这些信息这边没办法判断是什么原因呢,我这边试是okay的,同学可以参照下procategorydao的mapper修改
<insert id="batchInsertProductCategory" parameterType="java.util.List"> INSERT INTO tb_product_category(product_category_name, priority, create_time, shop_id) VALUES <foreach collection="list" item="productCategory" index="index" separator=","> ( #{productCategory.productCategoryName}, #{productCategory.priority}, #{productCategory.createTime}, #{productCategory.shopId} ) </foreach> </insert>
然后返回值照样为int试试。并且您的int返回为null而Integer不为null那返回的是什么值呢?查看下数据库看看数据是否添加进去了,不行就只能看看debug信息进行调试了,看看这个sql有没有正确
022017-10-09
相似问题