spring-mybatis配置文件中指定实体类映射文件
Posted xiueer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring-mybatis配置文件中指定实体类映射文件相关的知识,希望对你有一定的参考价值。
在SSM框架下开发,通常需要配置Spring Mybatis之间联系的配置文件,其中一项为<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<!-- <property name="configLocation" value="classpath:mybatis-config.xml" /> -->
<property name="mapperLocations" value="classpath:com/example/mapping/**/*.xml" />
</bean>
其中的configLocation和mapperLocations可以同时指定某一包以及子包下面的所有配置文件,mapperLocations和configLocation有一个即可,当需要为实体类指定别名时,可指定configLocation属性,再在mybatis总配置文件中采用mapper引入实体类映射文件
若是使用configLocation,其中mybatis-config.xml的格式为(具体指定每一个mapper)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<mappers>
<mapper resource="com/example/mapping/IncomeMapper.xml" />
<mapper resource="com/example/mapping/ExpenditureMapper.xml" />
<mapper resource="com/example/mapping/UserMapper.xml" />
</mappers>
</configuration>
也可以不具体指定mapper,而是使用mapperLocations,其格式为classpath:com/example/mapping/**/*.xml。 -- **表示任意级目录,上例可以扫描com.example.mapping目录下的各级目录下的xml文件
以上是关于spring-mybatis配置文件中指定实体类映射文件的主要内容,如果未能解决你的问题,请参考以下文章
如何在 HibernateJpaAutoConfiguration 中指定 packagesToScan?
权利文件与您的配置文件中指定的不匹配。(0xE8008016)