配置文件如何配置 mapper-locations
时间: 2024-06-08 21:08:02 浏览: 94
mybatis配置文件 config与mapper
在使用 Spring 框架进行开发时,可以通过配置文件来配置 `mapper-locations`,用于指定 MyBatis 的 Mapper XML 文件的位置。以下是一个示例的配置方式:
```xml
<!-- applicationContext.xml -->
<!-- 配置 MyBatis 的 SqlSessionFactory -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!-- 数据源配置 -->
<property name="dataSource" ref="dataSource" />
<!-- Mapper XML 文件的位置 -->
<property name="mapperLocations" value="classpath*:mapper/*.xml" />
</bean>
```
在上述示例中,`mapperLocations` 属性的值设置为 `classpath*:mapper/*.xml`,表示要扫描 classpath 下的 `mapper` 目录(包括子目录),并且匹配所有以 `.xml` 结尾的文件作为 Mapper XML 文件。
你可以根据实际情况修改 `mapperLocations` 的配置值,以适应你项目中 Mapper XML 文件的存放位置。
阅读全文