面向接口开发方式只需要程序员编写接口,由Mybatis框架创建接口的动态代理 对象,使用sqlsession.getMapper(接口.class);获得代理对象. 面向接口开发需要遵循以下规范: 1、 Mapper.xml文件中的namespace与mapper接口的类路径相同. 2、 Mapper接口方法名和Mapper.xml中定义的每个statement的id相同. 3、 Mapper接口方法的输入参数类型和mapper.xml中定义的每个sql 的 parameterType 的类型相同. 4、 Mapper接口方法的输出参数类型和mapper.xml中定义的每个sql的 resultType 的类型相同.