提兵百万西湖上,立马吴山第一峰!这篇文章主要讲述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方法】
推荐阅读
- PEP-8教程(Python中的代码标准)
- CodeForces 593D Happy Tree Party [LCA+并查集]
- 2Android-UI(自定义控件&ListView)
- 谷歌商店上架APP被拒绝
- 开发框架-APP(Hybird App)
- 操作系统(Android(Google公司开发的操作系统))
- Create and test an approval workflow with Microsoft Flow
- 公司app 从兼容Android 8.0 升级兼容9.0
- IDEA访问不到SpringBoot项目webapp下的内容