摘要: 1、异常提示: org.apache.ibatis.binding.BindingException: Mapper method 'com.artup.dao.WorksDao.selectWorksIsCropCompletedById attempted to return null from a method with a primitive return type (byte).... 阅读全文
posted @ 2018-05-16 09:24 hapday 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 1、异常提示: java.lang.ArithmeticException: / by zero 2、原因: 当我们定义的被除数为整型时(short、int、long)会抛出此异常, 被除数为整型时不可为零。 3、解决办法: 检查整型的被除数。 阅读全文
posted @ 2018-05-16 00:54 hapday 阅读(84276) 评论(1) 推荐(1) 编辑
摘要: 1、异常提示: java.lang.NumberFormatException: Infinite or NaN 2、原因:无法格式化的数字,此数字要么不是个数字,要么是无穷大的数字,从而导致 BigDecimal 无法对其解析。 3、解决办法:检查传入到 BigDecimal 的参数是不是数字,或者数字中含有空格。 阅读全文
posted @ 2018-05-16 00:43 hapday 阅读(24546) 评论(0) 推荐(1) 编辑