org.apache.ibatis.binding.BindingException: Type interface mapper.UserImp is not known to the Mapper

错误提示

org.apache.ibatis.binding.BindingException: Type interface mapper.UserImp is not known to the MapperRegistry.

这个错误是我在用注解来写mybatis时忘记在mybatisConfig.xml配置文件导入这个类导致的

解决办法
在xml文件中导入这个使用注解的类

<mappers>
        <mapper class="mapper.UserImp"></mapper>
 </mappers>

希望你的问题得到解决

你可能感兴趣的:(mybatis,java,xml)