今天我在學習mybatis時碰到了這個報錯:org.apache.ibatis.binding.BindingException: Type interface *** is not known to the MapperRegistry.
通過搜索引擎找了很久之后都沒能找到解決方案,網上流傳的比較多的解決方案是:mapper.xml文件放置到跟接口DAO.java不同名,或者是mapper.xml的namespace沒有寫對。但是我的錯誤都不是上述問題。
后來我想了想,我在寫完mapper.xml后,還沒在config.xml將該mapper.xml配置進來。
在config.xml中配置好mapper.xml后,項目報錯的問題就解決了。

