随笔分类 - mybatis相关
摘要:一、mapper接口中的方法解析 mapper接口中的函数及方法: 二、example实例解析 mybatis的逆向工程中会生成实例及实例对应的example,example用于添加条件,相当where后面的部分 xxxExample example = new xxxExample(); Crit
阅读全文
摘要:完整错误如下: org.apache.ibatis.binding.BindingException: Parameter ‘customerIdList’ not found. Available parameters are [collection, list] 解释: 当我们传递一个 List
阅读全文
摘要:1.根据useGeneratedKeys获取返回值,部分数据库不支持 修改mybatis xml useGeneratedKeys="true" :设置是否使用JDBC的getGenereatedKeys方法获取主键并赋值到keyProperty设置的领域模型属性中。(适用于mysql、sqlser
阅读全文