I\'m setting up mybatis using annotations, and getting this helpful exception
org.apache.ibatis.binding.BindingException: Type interface org.foo.Bar is
Type interface org.domain.classmapper is not known to the MapperRegistry
MyBatis throws this exception if the full package / class is not entered into the mapper xml namespace.
e.g. <mapper namespace="classmapper"> causes exception, but
<mapper namespace="classmapper">
<mapper namespace="org.domain.classmapper"> works
<mapper namespace="org.domain.classmapper">