随笔分类 - Mybatis
摘要:在mysql中 create table Student( Student_ID int(6) NOT NULL PRIMARY KEY AUTO_INCREMENT, Student_Name varchar(10) NOT NULL, Student_Age int(2) NOT NULL );
阅读全文
摘要:1.org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)问题 即在mybatis中dao接口与mapper配置文件在做映射绑定的时候出现问题,简单说,就是接口与xml要么是找不到,要么是找到了却
阅读全文
摘要:https://blog.csdn.net/tianshan2010/article/details/105889133/
阅读全文
摘要:Mybatis查询sql传入一个字符串传参数,报There is no getter for property named 'ids' in 'class java.lang.String'。 解决方法: 1.在接口参数里加上mybatis中的@param注解 @MyBatisDao public
阅读全文