error
冲啊Javascripit
这个作者很懒,什么都没留下…
展开
-
mybatis-plus error(2)Invalid bound statement (not found)
标题mybatis-plus踩坑 (2) 完整的错误描述是这样的: Invalid bound statement (not found): com.server.mapper.XxxxMapper.getList 无效的绑定语句,后面是一个mapper里面的方法。在这个异常下 1.我没有发现xml中的别名与实体类中的名字不对应 2.没有xml中namespace地址与mapper不对应 3.方法中,返回的类型resultType不对应 4.实体类与查询的表明不对应 最后发现是xml或者是mapper的后缀原创 2021-02-09 17:12:52 · 92 阅读 · 0 评论 -
java java.lang.NullPointerException 空指针异常
Doctor doctor = doctorMapper.selectList( new LambdaQueryWrapper() .eq(Doctor::getCode,doctorCode) ).get(0); 写了个这,一直出问题,空指针异常。后面发现是 DoctorMapper doctorMapper;究其原因还是因为对象没有初始化。没有加上注解@Resource,加上注解就好了 ...原创 2021-01-28 15:12:09 · 455 阅读 · 0 评论 -
mybatis-plus 主键自动增加遇到的问题
错误的描述是这样的:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘describe’ 我一直以为是mybatis-puls因为自身的原因,不能生成id。 1.我给主键备注@TableId(value = “id”,type = IdType.ASSIGN_UUID),给表明备注@Tabl原创 2021-01-27 20:00:28 · 1586 阅读 · 0 评论