[Mybatis] 绑定声明无效 Invalidbound statement (not found)

 

[Mybatis] 绑定声明无效 Invalidbound statement (not found)

 

这是页面报出来的错误:

HTTP Status 500 - Request processing failed; nested exception is
org.apache.ibatis.binding.BindingException:Invalid bound statement (not found): com.test.dao.UserMapper.getAllUser
   at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:189)
   at org.apache.ibatis.binding.MapperMethod.<init>(MapperMethod.java:43)
   at org.apache.ibatis.binding.MapperProxy.cachedMapperMethod(MapperProxy.java:58)
   at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:51)
   at com.sun.proxy.$Proxy13.add(Unknown Source)
   at com.coocaa.test.service.UserService.getUser(UserService.java:24)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
   at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
   at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)

经过查找,Spring-mybatis.xml中的配置也没有问题

 

 







然后在target目录下面发现没有mybatis目录的。 


这样就有两种解决方法了 


1.
将mybatis的xml文件全部放在resource下面 
再修改spring配置文件里面的路径 


2.需要在pom加一个resources的资源加载列表

<build>

     <!--这个元素描述了项目相关的所有资源路径列表,例如和项目相关的属性文件,这些资源被包含在最终的打包文件里。-->

     <resources>

         <resource>

       <!--   描述存放资源的目录,该路径相对POM路径-->

              <directory>src/main/java</directory>

              <includes>

                  <include>**/*.xml</include>

              </includes>

         </resource>

     </resources>

  </build>

 

这个时候,再次运行项目,就可以看到target目录下面存在mybatis的xml文件了 

这个错误只是我遇到的一种类型,可能解决不了左右的类型,敬请谅解

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值