错误1
org.apache.ibatis.binding.BindingException: Type interface cn.xsy.dao.DetailMapper is not known to the MapperRegistry.
原因 映射文件没有导入
<mappers>
<mapper resource="mappers/User.xml"/>
<mapper resource="mappers/Orders.xml"/>
</mappers>
博客指出Mybatis出现错误,原因是映射文件没有导入。这是信息技术中后端开发使用Mybatis时常见的问题,映射文件未导入会导致程序异常。
错误1
org.apache.ibatis.binding.BindingException: Type interface cn.xsy.dao.DetailMapper is not known to the MapperRegistry.
原因 映射文件没有导入
<mappers>
<mapper resource="mappers/User.xml"/>
<mapper resource="mappers/Orders.xml"/>
</mappers>
453
435
1419
6396
142

被折叠的 条评论
为什么被折叠?