码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis使用接口方式报错

时间:2017-06-07 19:41:49      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:interface   文件   and   cep   XML   size   round   registry   bind   

报错: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使用接口方式报错

标签:interface   文件   and   cep   XML   size   round   registry   bind   

原文地址:http://www.cnblogs.com/lmq-1048498039/p/6958554.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!