MyBatis中selectByExample和selectByExampleWithBLOBs区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MyBatis中selectByExample和selectByExampleWithBLOBs区别相关的知识,希望对你有一定的参考价值。

参考技术A 先贴一段MyBatis逆向工程自动生成的xml配置文件片段

这样在逆向工程时,param_data列的jdbcType就会自动转换成VARCHAR类型,也就不会再生成后缀为Blobs的方法了。

Invalid bound statement (not found): com.taotao.mapper.TbItemMapper.selectByExample: 错误

因碰到同样的问题,使用该方法对我有效,为方便以后查找,所以做了转载,原文请查看: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 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文件中

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

以上是关于MyBatis中selectByExample和selectByExampleWithBLOBs区别的主要内容,如果未能解决你的问题,请参考以下文章

mybatis 查询

springboot + mybatis 常见配置问题

Mybatis分页遇到的问题(分页total)

ssm异常;

Invalid bound statement (not found): com.taotao.mapper.TbItemMapper.selectByExample: 错误

启动tomcat以后报Invalid bound statement (not found): com.taotao.mapper.TbItemMapper.selectByExample错误(示例代