标签:
环境:spring3.1.1+mybatis3.2.8+mybatis-spring1.2.3
SpringMVC + MyBatis整合,出现下面的错误:
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): org.com.mars.dao.test.UserDao.queryUserById
可能的原因是:
1. 请检查mapper.xml文件路径是否配置正确。
<!-- 创建SqlSessionFactory,同时指定数据源 --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource" /> <!-- 自动扫描entity目录, 省掉Configuration.xml里的手工配置 --> <property name="mapperLocations" value="classpath*:maper/*.map.xml" /> </bean>
2. mapper.xml中的namespace 问题。
值应该是*Dao.java
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="org.com.mars.dao.test.*Dao"> ... </mapper>
参考资料:http://my.oschina.net/wangbiglei/blog/489597
本文如有不正,请指出。
以上。org.apache.ibatis.binding.BindingException
标签:
原文地址:http://my.oschina.net/wangbiglei/blog/489604