这是我的第2个bug-Type interface Mapper is not known to the MapperRegistry.

bug描述
Exception in thread "main" org.apache.ibatis.binding.BindingException: Type interface com.itheima.mapper.UserMapper is not known to the MapperRegistry.
	at org.apache.ibatis.binding.MapperRegistry.getMapper(MapperRegistry.java:47)
	at org.apache.ibatis.session.Configuration.getMapper(Configuration.java:823)
	at org.apache.ibatis.session.defaults.DefaultSqlSession.getMapper(DefaultSqlSession.java:291)
	at com.itheima.Test2.main(Test2.java:26)
原因

使用mybatis时,扫描mapper映射文件错误 导致的

解决办法

错误方式

    
    
    

正确方式

      
        
    

扫描包路径时要用.连接包名,而不是 /

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/langs/793898.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-06
下一篇 2022-05-06

发表评论

登录后才能评论

评论列表(0条)

保存