异常:
Exception in thread "main" org.apache.ibatis.binding.BindingException: Type interface com.yihaomen.mybatis.inter.IUserOperation is not known to the MapperRegistry.
at
org.apache.ibatis.binding.MapperRegistry.getMapper(MapperRegistry.java:42)
at
org.apache.ibatis.session.Configuration.getMapper(Configuration.java:655)
at
org.apache.ibatis.session.defaults.DefaultSqlSession.getMapper(DefaultSqlSession.java:218)
at com.yihaomen.test.Test.main(Test.java:33)
原因:User.xml 文件中 mapper中:错误如下红色字体为错误命名空间,接口编程中应对应接口所在路径 ,绿色为正确配置。
<--------?xml version="1.0" encoding="UTF-8" ?>
<--------!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper
3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<--------!--namespace="com.yihaomen.mybatis.inter.IUserOperation"
-->
<--------mapper namespace="com.yihaomen.mybatis.models.UserMapper"
>
<--------select id="selectUserByID" parameterType="int"
resultType="User">
select * from `user` where id = #{id}
<--------/select>
<--------/mapper>
注意:增加,更改,删除的时候要调用session.commit(),这样才会真正对数据库进行操作,否则是没有提交的。
作者:帝国工匠
出处:http://www.cnblogs.com/Shj-Blog/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。