MyBatis-Invalid bound statement (not found)-问题处理

最近把工程改为Hibernate和MyBatis并存,并存只要注意两点即可:

  1.使用同一个dataSource

  2.事物交给Hibernate进行管理(Hibernate4+)  Hibernate做CUD操作 MyBatis负责R



在整合完成之后发现一个问题。使用MyBatis进行查询报错:

  Invalid bound statement (not found)

网上有很多同样的错误,但是出现这个错误的原因有很多种,解法都是不一样的。这里说一下我出现这个错误的原因。

这里主要是因为我使用generator工具后,生成的mapper文件。我排除错误的方法:

  1.使用MyBatis进行一个最基础的select * 查询(发现报错)

  2.检查MyBatis的xml文件是否被加载,xml文件路径是否正确 (加载,路径正确)

  3.检查xml文件中的内容是否有误(有误)

最终确定错误就出在了xml配置文件中。


这里需要保证:mapper   的 namespace 对应的是DAOresultMap  的 namespace 对应的是pojo<mapper namespace="com.xxx.dao.mybatis.SubjectMapper" >    
  <resultMap id="BaseResultMap" type="com.xxx.domain.mybatis.Subject" >
    <id column="id" property="id" jdbcType="INTEGER" />
  </resultMap>
时间: 2024-09-30 13:34:11

MyBatis-Invalid bound statement (not found)-问题处理的相关文章

转载:Maven项目mybatis Invalid bound statement (not found)解决方法

在mapper代理的开发中,程序员需要遵守一些规范,mybatis才能实现mapper接口的代理对象. 它的规范如下: mapper.xml的namespace要写所映射接口的全称类名. mapper.xml中的每个statement的id要和接口方法的方法名相同 mapper.xml中定义的每个sql的parameterType要和接口方法的形参类型相同 mapper.xml中定义的每个sql的resultType要和接口方法的返回值的类型相同 mapper.xml要和对应的mapper接口在

MyBatis: Invalid bound statement (not found)错误的可能原因

MyBatis: Invalid bound statement (not found)错误的可能原因 其他原因导致此问题解决参考: 1.检查 xml 文件所在 package 名称是否和 Mapper interface 所在的包名一致 <mapper namespace="com.xiaopengwei.mapper.UserInfoMapper"> mapper 的 namespace 写的不对!!!注意系修改. 2.UserDao 的方法在 UserDao.xml

关于mybatis Invalid bound statement (not found) 问题

初学mybatis   现在系统是spring + mybatis  applicationContext.xml里面配置了Mapper 自动扫描 <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">    <property name="basePackage" value="com.yolly.platform.*" /></bean&g

Mybatis:Invalid bound statement (not found)

今天在使用SSM做整合练习的时候写完初始的一个查询功能,想测试下环境是否正确,出现了这个问题, 找个半天才发现自己的问题.网上很多说Mapper.xml中的namespace写的问题,但是我出现的问题却不在这. 由于用Spring去整合Mybatis,不在需要mybatis的配置文件. 出错的时候是这样: <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"&

mybatis中Invalid bound statement (not found) 和 Result Maps collection already contains value for...错误解决方案

一.Invalid bound statement (not found) 使用mybatis有时候会报Invalid bound statement (not found)这种错误,总结了下,可能有两种情况如下: 1.mybatis的对应的mapper.xml找不到对应的命名sql或者名称与mapper接口名称不一致. 2.xml文件与接口名称都对,但是在mybatis配置文件中漏掉了配置,也会报这种错误. 二.Result Maps collection already contains v

Mybatis 异常记录(1): Invalid bound statement (not found)

错误信息: org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.pingan.credit.dao.mapper.TdReportMapper.insertQueryLog at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:223) at org.apache.ibatis

MyBatis笔记----报错Exception in thread &quot;main&quot; org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.ij34.model.UserMapper.selectUser

信息: Refreshing org[email protected]41cf53f9: startup date [Wed Apr 05 16:48:12 CST 2017]; root of context hierarchy 四月 05, 2017 4:48:12 下午 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions 信息: Loading XML bean definiti

[mybatis] mybatis错误:Invalid bound statement (not found)

点击菜单抛出异常: org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.misscandy.inter.UserMapper.findAllUsers org.springframe

&quot;Invalid bound statement (not found): com.sitech.admin.dao.TbOpenAbilityInfoDao.findAbilityReadyUp&quot;mybatis配置文件bug

问题描述: 通常在正常启动某项工程后操作某个功能时抛出的bug: org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.sitech.admin.dao.TbOpenAbilityInfoDao.findAbilityReadyUp at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.j

mybatis 异常处理:Invalid bound statement (not found)

mybatis 的使用过程中提示错误: org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.msunsoft.mapper.HisLisReportMapper.getMaxMtcData 含义:HisLisReportMapper的getMtcData方法没有找到或者没有绑定 背景: 1.HisLisReportSyncWorker 控制类中 String hospitalCo