Mybatis常用方法
时间: 2024-01-20 15:02:50 浏览: 209
mybatis的用法
1. selectOne() - 查询单个对象
2. selectList() - 查询对象列表
3. insert() - 插入单个对象
4. insertBatch() - 批量插入对象
5. update() - 更新单个对象
6. updateBatch() - 批量更新对象
7. delete() - 删除单个对象
8. deleteBatch() - 批量删除对象
9. selectMap() - 查询结果映射为Map对象
10. selectOneByExample() - 根据Example对象查询单个对象
11. selectListByExample() - 根据Example对象查询对象列表
12. selectCount() - 查询数量
13. selectByExampleAndRowBounds() - 根据Example对象和RowBounds分页查询对象列表
14. selectByRowBounds() - 根据RowBounds分页查询对象列表
阅读全文