我的未知错误:数据库设计的时候没有为third_party设置默认值,导致insertSelective插入出错,设置默认值就好了
2021-06-16
最赞回答 / ahuwhq
已解决:下单未成功断点调试发现主要是itemId为null,注意去看
decreaseStock的SQL语句 & supdate id="decreaseStock"& w update item_stock set stock = stock-#{amount} where item_id = #{itemId} and stock&ck&=...
2021-05-27
当年龄超过150岁时出现空指针异常
目前的解决方法是新建一个map,能正确返回错误信息
Map<String, String> errorMsgMap = new HashMap<>();
result.setErrorMsgMap(errorMsgMap);
目前的解决方法是新建一个map,能正确返回错误信息
Map<String, String> errorMsgMap = new HashMap<>();
result.setErrorMsgMap(errorMsgMap);
2021-05-27
最赞回答 / ahuwhq
断点调试发现是数据库设计问题,在userService.register(userModel);时跳出异常。解决是重新设计数据库,删除原来的数据库,运行下面这段SQL:SET FOREIGN_KEY_CHECKS=0;-- ------------------------------ Table structure...
2021-05-24