2.3 编写代码
-
实体类
-
Dao接口
-
接口实现类 (由原来的UserDaoImpl转变为一个Mapper配置文件)
-
测试
注意点:
org.apache.ibatis.binding.BindingException: Type interface com.kuang.dao.UserDao is not known to the MapperRegistry.
MapperRegistry是什么?
核心配置文件(MyBatis-config.xml)中注册mappers
-
junit测试
-
可能会遇到的问题:
-
配置文件没有注册
-
绑定接口错误
-
方法名不对
-
返回类型不对
-
Maven导出资源问题