记@MapperScan注解报错问题

项目启动报错Request processing failed; nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.founder.area.service.AreaService.findAreaList

 原因是因为在启动类上添加注解@MapperScan("com.founder.area")

解决:使用这个的时候应该扫描的是mapper层, 如果我们用成全局的扫描(根目录),那么他也会出现这个问题, 因为他可能错吧service也当成了mapper。

记录自己的BUG

你可能感兴趣的:(自己碰见的BUG,java,mybatis,spring)