[轉載]Invalid bound statement (not found): com.taotao.mapper.TbItemMapper.selectByExample: 錯誤

來源:互聯網
上載者:User

標籤:path   org   control   perm   根據   通過   nested   做了   not found   

因碰到同樣的問題,使用該方法對我有效,為方便以後尋找,所以做了轉載,原文請查看:https://www.cnblogs.com/fifiyong/p/5795365.html

在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 causeorg.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檔案中

抱歉,我只能根據自己出現的情況說明了,希望能幫到出現同樣錯誤的朋友,同時希望路過的牛人指點。

[轉載]Invalid bound statement (not found): com.taotao.mapper.TbItemMapper.selectByExample: 錯誤

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.