spring boot mybatis 多数据源配置后出现 Invalid bound statement (not found):

通常导致这种原因的大致有以下这几种情况
1 mapper的namespace 有问题

2 xxMapper的方法在xxMapper.xml中没有,调用那个方法就报错

3没有正确配置ResultMap,或者只配置ResultType!

我这情况跟上面不同。使用单独数据源是可以的,只有一个数据源的mapper正常,一起使用就报错。
项目是使用xml方式配置数据源的,猜想是不是spring boot MybatisAutoConfiguration 自动加载了 mapper,需要排除spring mybatis 自动加载
果然如此

@SpringBootApplication(exclude = MybatisAutoConfiguration.class)
@ImportResource({ "classpath:/applicationContext.xml","classpath:/event-datasource.xml"  })
public class Application {
}

搞定解决

你可能感兴趣的:(JAVA,spring,boot)