zoukankan      html  css  js  c++  java
  • Invalid bound statement (not found): com.taotao.mapper.TbItemMapper.selectByExample: 错误

    在Maven工程下,想通过controller接收url中的参数Id查询数据库的数据,并且以json形式显示在页面。

    在浏览器输入url后出现的问题:

    八月 22, 2016 1:45:22 下午 org.apache.catalina.core.StandardWrapperValve invoke
    严重: Servlet.service() for servlet [taotao-manager] in context with path [] threw exception [Request processing failed; nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.taotao.mapper.TbItemMapper.selectByExample] with root cause
    org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.taotao.mapper.TbItemMapper.selectByExample
     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.$Proxy30.selectByExample(Unknown Source)

    原因:找不到mapper的映射文件

     

    解决办法:

     <!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->
     <build>
      <resources>
                <resource>
                    <directory>src/main/java</directory>
                    <includes>
                        <include>**/*.properties</include>
                        <include>**/*.xml</include>
                    </includes>
                    <filtering>false</filtering>
                </resource>
            </resources>

    </build>

     以上节点的内容,添加的位置在Maven工程下的父工程里面pom.xml文件中

    抱歉,我只能根据自己出现的情况说明了,希望能帮到出现同样错误的朋友,同时希望路过的牛人指点。

  • 相关阅读:
    人工智能
    华盛顿邮报启用核查事实机器人,新闻行业路指何方
    被算法控制的网络
    新型机器人闯入职场:到底是工作缔造者还是工作终结者?华盛顿邮报
    有情感会说话,虚拟人脸Zoe诞生
    IBM Watson将最终适应智能机,可以进行疾病诊断
    我们用大数据创造没人能理解的人工智能
    在DNA中存储数据成为现实
    matlab 工具箱
    背后的原因——是时候让计算机理解我们的意图、而非表面意思
  • 原文地址:https://www.cnblogs.com/fifiyong/p/5795365.html
Copyright © 2011-2022 走看看