-
传统开发方式
1、编写UserDao接口
2、编写UserDaoImpl实现
3、测试
-
代理开发方式
只需要编写Mapper接口(相对于DAO接口),由MyBatis实现动态代理对象。
代理开发方式需要遵循以下规范:
还需要在MyBatis配置文件中声明接口,下面两种方式都是可以的
<mappers>
<mapper class="com.lagou.pojo.UserMapper" />
<package name="com.lagou.pojo"/>
</mappers>
网友评论