Mybatis Generator 生成的mapper只有insert方法
Posted j_liu.sdc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis Generator 生成的mapper只有insert方法相关的知识,希望对你有一定的参考价值。
检查一下是不是表没有设置主键!!!
表没有设置primary key 的话生成的TestMapper 里就会只有 insert 、insertSelective 这两个方法。
public interface TestMapper { int deleteByPrimaryKey(Long id);//表没有设置主键就会生不出这个方法 int insert(a record); int insertSelective(a record); a selectByPrimaryKey(Long id);//表没有设置主键就会生不出这个方法 int updateByPrimaryKeySelective(a record);//表没有设置主键就会生不出这个方法 int updateByPrimaryKey(a record);//表没有设置主键就会生不出这个方法 }
以上是关于Mybatis Generator 生成的mapper只有insert方法的主要内容,如果未能解决你的问题,请参考以下文章
13.1 MyBatis Generator概述(MyBatis Generator逆向代码生成工具) -《SSM深入解析与项目实战》