[MyBatis]mapperLocations属性通配符的使用

技术驱动人生 2015-11-26

http://blog.csdn.net/szwangdf/article/details/23432783

示例:

<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">  
    <property name="dataSource" ref="dataSource" />  
    <property name="configLocation" value="classpath:sqlMapConfig.xml"></property>  
    <property name="mapperLocations" value="classpath*:com/huaxin/**/*Mapper.xml"></property>  
</bean>

注意点:在classpath后面的*必不可少,缺少型号的话后面的通配符不起作用。

**表示可以表示任意多级目录,如:上述配置可以查到【com/huaxin/framework/system/dao/UserDaoMapper.xml】

*表示多个任意字符

缺少classpath后面的*会报以下的错误:

org.mybatis.spring.MyBatisSystemException:nestedexceptionisorg.apache.ibatis.exceptions.PersistenceException:

###Errorqueryingdatabase.Cause:java.lang.IllegalArgumentException:MappedStatementscollectiondoesnotcontainvalueforframework.system.dao.UserDao.getNextUserId_MySQL

###Cause:java.lang.IllegalArgumentException:MappedStatementscollectiondoesnotcontainvalueforframework.system.dao.UserDao.getNextUserId_MySQL

atorg.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:75)

atorg.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:371)

atcom.sun.proxy.$Proxy18.selectOne(UnknownSource)

atorg.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:163)

atcom.huaxin.framework.core.dao.impl.BaseDaoImpl.selectOne(BaseDaoImpl.java:298)

atcom.huaxin.framework.system.dao.impl.UserDaoImpl.getNextUserId(UserDaoImpl.java:41)

相关推荐