mybatis整合spring实现开启mapper.xml映射文件扫描
更新时间:2021年10月09日 10:38:13 作者:L小芸
这篇文章主要介绍了mybatis整合spring实现开启mapper.xml映射文件扫描,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
mybatis整合spring开启mapper.xml映射文件扫描
一般情况下,我们知道在使用mybatis的时候,必须在mybatis全局配置文件里配置映射文件。
代码如下:
<mappers> <mapper resource="/resources/mybatis/sys/ParamMapper.xml"/> <mapper resource="/resources/mybatis/account/UmUserDevMapper.xml"/> <mapper resource="/resources/mybatis/authz/AcctAuthorityMapper.xml"/> <mapper resource="/resources/mybatis/authz/ApplicationMapper.xml"/> <mapper resource="/resources/mybatis/authn/LoginMapper.xml"/> <mapper resource="/resources/mybatis/audit/LogLoginMapper.xml"/> <mapper resource="/resources/mybatis/audit/LogActionMapper.xml"/> </mappers>
但是与spring整合后,spring提供了mapperLocations属性来扫描指定路径下的映射文件。于是就可以省去每增加一个映射文件就要在mybatis-config.xml文件加一个配置的麻烦。
<!-- 配置mybatis --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource"/> <property name="configLocation" value="classpath:resources/mybatis/mybatis-config2.xml"></property> <!-- mapper扫描 --> <property name="mapperLocations" value="classpath:resources/mybatis/entity/*.xml"></property> </bean>
spring配置扫描mybatis的mapper文件注意
一般会将不业务的mapper文件放到不同的包中:
spring配置扫描就需要配置下面的方式(两个*):
<!-- mybatis文件配置,扫描所有mapper文件 --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean" p:dataSource-ref="dataSource" p:configLocation="classpath:conf/mybatis-config.xml" p:mapperLocations="classpath:mapper/**/*.xml" />
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
Spring boot项目redisTemplate实现轻量级消息队列的方法
这篇文章主要给大家介绍了关于Spring boot项目redisTemplate实现轻量级消息队列的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者使用Spring boot具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧2019-04-04Java中的 BigDecimal 和 String 的相互转换问题
这篇文章主要介绍了Java中的 BigDecimal 和 String 的相互转换问题,本文通过示例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2023-05-05Java ES(Elasticsearch) 中的and 和 or 查
Elasticsearch 是一个分布式、高扩展、高实时的搜索与数据分析引擎,es中match查询中,查询字符串分词后,默认是or或者的关系,这篇文章主要介绍了ES 中的and 和 or 查询,需要的朋友可以参考下2022-11-11Java中wait与sleep的区别讲解(wait有参及无参区别)
这篇文章主要介绍了Java中wait与sleep的讲解(wait有参及无参区别),通过代码介绍了wait() 与wait( long timeout ) 区别,wait(0) 与 sleep(0)区别,需要的朋友可以参考下2022-04-04
最新评论