mybatis 问题 Invalid bound statement

mybatis 问题 Invalid bound statement

问题

org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.xx.xService.saveAddress

原因

mybatis MapperScan 没有直接扫描到mapper 层的包

解决方案

@MapperScan("com.a.b.**.mapper")

你可能感兴趣的:(面试问题,mybatis)