mybatis使用接口方式报错

Posted 玄门主宰

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis使用接口方式报错相关的知识,希望对你有一定的参考价值。

报错:org.apache.ibatis.binding.BindingException: Type interface com.lmq.inter.MybatisBeanDao is not known to the MapperRegistry

原因:没有在xml文件中设置namesace和接口的全类名一致

MybatisBean.xml

<mapper namespace="com.lmq.inter.MybatisBeanDao">
<select id="selectMybatisTestByID" parameterType="int" resultType="MybatisBean">
select * from mybatistest where id = #{id}
</select>
</mapper>

 

则,对应的接口类必须是com.lmq.inter包下的MybatisBeanDao类,否则会出现上述错误

 





以上是关于mybatis使用接口方式报错的主要内容,如果未能解决你的问题,请参考以下文章

MyBatis多个接口参数报错:Available parameters are [0, 1, param1, param2], 及解决方法

02.MyBatis在DAO层开发使用的Mapper动态代理方式

MyBatis的操作与配置文件

Mybatis接口方式

通过aop拦截mybatis接口dao

通过aop拦截mybatis接口dao