異常:
Exception in thread "main" org.apache.ibatis.binding.BindingException: Type interface com.aaa.pro.dao.DeptDao 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:763)
at org.apache.ibatis.session.defaults.DefaultSqlSession.getMapper(DefaultSqlSession.java:291)
at com.aaa.pro.test.Main.query1(Main.java:40)
at com.aaa.pro.test.Main.main(Main.java:35)
運行截圖截圖;
解決辦法:
把 <mapper namespace="com.aaa.pro.dao.DeptMapper">改為:
<mapper namespace="com.aaa.pro.dao.DeptDao">