以接口的方式编程: 只需要修改两个地方即可,
1、mapper.xml(实体类)配置文件,
注意mapper的namespace的名字是mapper对象的完整路径名com.xiamen.mapper.PersonMapper(这样session就可以getMapper了)
因为mybatis的作用就是:使得接口绑定成为可能。
注意,接口中方法名 selectUserByID 必须与 PersonMapper.xml 里面配置的 select 的id 对应(<select id="selectUserByID")
2、程序调用:
PersonMapper funDao = session.getMapper(PersonMapper.class); Person person = funDao.selectFcuByID("1");