“Type interface is not known to the MapperRegistry” exception using mybatis

前端 未结 7 699
野性不改
野性不改 2021-02-02 15:23

I\'m setting up mybatis using annotations, and getting this helpful exception

org.apache.ibatis.binding.BindingException: Type interface org.foo.Bar is

7条回答
  •  误落风尘
    2021-02-02 15:39

    OK, got it - this is happening because I was using a XML file for the configuration, and annotations for the mappers themselves - and mybatis doesn't find mapper annotations when using an XML config.

    See this followup question.

提交回复
热议问题