运行插件的方法如下,点击红框部分即可
MyBatis Generator的运行方法有很多种,maven插件的方法最方便,因此不再介绍其他方法
生成的Student类和数据库中的字段一样,而StudentExample类是为了方便增删改查而生成的,我演示一下用法,其实很鸡肋,一般不用这个
@Repository public interface StudentMapper { // 生成的一部分,没有全部列出来 long countByExample(StudentExample example); int deleteByExample(StudentExample example); int deleteByPrimaryKey(Integer id); int insert(Student record); int insertSelective(Student record); } 演示
我建一个测试类,来演示用法,IDEA中按住Ctrl Shift后再按T键,自动生成一个测试类
,选中要测试的方法即可自动生成测试类,我就演示一下countByExample这个方法吧
查询id>=1并且id<4的学生的数量,测试通过