MyBatis笔记----报错:Exception in thread "main" org.apache.ibatis.binding.BindingException: Inv

Posted Stay Hungry, Stay Foolish

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MyBatis笔记----报错:Exception in thread "main" org.apache.ibatis.binding.BindingException: Inv相关的知识,希望对你有一定的参考价值。

报错


 

Exception in thread "main" org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.ij34.model.UserMapper.selectarticle
at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:230)
at org.apache.ibatis.binding.MapperMethod.<init>(MapperMethod.java:48)
at org.apache.ibatis.binding.MapperProxy.cachedMapperMethod(MapperProxy.java:65)
at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:58)
at com.sun.proxy.$Proxy0.selectarticle(Unknown Source)
at com.ij34.bean.Test.main(Test.java:23)

 

 


 

解决方法

 

接口UserMapper的方法selectarticle与mybatis-config.xml里

与 下面UserMapper.xml里select id的要相同,当时写了大写

  <select id="selectArticle" parameterType="int" resultMap="resultAticleList">
  select users.id,users.name,users.age,article.id aid,article.title,article.content from users,article
  where users.id=article.userid and users.id=#{id}
  </select>

 

以上是关于MyBatis笔记----报错:Exception in thread "main" org.apache.ibatis.binding.BindingException: Inv的主要内容,如果未能解决你的问题,请参考以下文章

日常Exception第三十四回:mybatis-plus插入insert时null值导致报错,ExpressionSyntaxException: Malformed OGNL expressi

记录一些遇见的bug——项目启动报错org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.e

记录一些遇见的bug——项目启动报错org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.e

spring+struts+mybatis中关于报错org.hibernate.exception.GenericJDBCException: Connection is read-only. Que

记录:org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding...解决方案

MBG逆向工程报错:generate failed: Exception getting JDBC Driver: com.mysql.jdbc.Driver