SpringMVC项目集成MyBatis后启动一切正常,为了方便测试效果写了一个helloword,结果请求发到后台后报错如下:
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.esgcc.service.wechatCA.HelloService.findString
at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:214)
at org.apache.ibatis.binding.MapperMethod.<init>(MapperMethod.java:48)
at org.apache.ibatis.binding.MapperProxy.cachedMapperMethod(MapperProxy.java:59)
at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:52)
at com.sun.proxy.$Proxy20.findString(Unknown Source)
at com.esgcc.wechatCA.Hello.hello(Hello.java:21)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
有经验的应该一眼久可以看出来,报错在service接口
但是当时想到service调用mapper,也没有多想,直接百度
百度出来大多是检查mapper接口和xml文件
直到看到 https://www.aliyun.com/jiaocheng/805410.html 恍然大悟
根据报错定位到 org.apache.ibatis.binding.MapperMethod:378
至此错误原因已经确定
由于MyBatis的MapperScannerConfigurer配置不够细,导致MyBatis扫描接口的时候扫描到Service接口,但是找不到xml文件报错
解决,将mapper包写详细,不要包含其他接口
进一步猜想:如果不修改配置,将mapper.xml中namespace改为service接口,是否可以正常使用
结果成功查询数据库返回数据,service实现类的断点也没有进,MyBatis成功接管service