
1.7.5 <mappers>标签
<mappers>标签用于配置映射文件,指定映射文件的位置有以下4种方法。
(1)使用resource属性引入类路径。示例如下:
<mappers>
<mapper resource="com/lifeng/dao/StudentMapper.xml"/>
</mappers>
若配置文件有多个,可以按以下方法配置:
<mappers>
<mapper resource="com/lifeng/dao/StudentMapper1.xml"/>
<mapper resource="com/lifeng/dao/StudentMapper2.xml"/>
<mapper resource="com/lifeng/dao/StudentMapper3.xml"/>
</mappers>
本书的案例就采用这种方法。
(2)使用url属性引入本地文件。示例如下:
<mappers>
<mapper url="file:///E:/com/lifeng/dao/StudentMapper.xml"/>
</mappers>
url也可以是网络地址,这样映射文件可以放在任何位置,但一般很少这样。
(3)使用class属性引入接口类。示例如下:
<mappers>
<mapper class="com.lifeng.dao.StudentMapper"/>
</mappers>
这样配置比较简便,但要满足以下3个条件。
接口名称与映射文件名称一致。
接口与映射文件必须在同一个包中。
映射文件中<mapper>标签的namespace命名空间的值为接口的全限定类名。
本例中,接口名称必须为StudentMapper,与映射文件放在同一个包com.lifeng.dao下,且映射文件<mapper>标签必须按以下方法配置:
<mapper namespace="com.lifeng.dao.StudentMapper">
(4)使用包名引入。
当映射文件较多时,可以不用一个个配置,而是使用如下形式,其中package的name属性指定映射文件所在的包,该包下的所有映射文件都会被扫描到,具体如下:
<mappers>
<package name="com.lifeng.dao "/>
</mappers>
要使用这种配置,需满足以下4个条件。
DAO的实现类采用mapper动态代理实现。
映射文件与接口的名称相同。
映射文件与接口在同一个包中。
映射文件中<mapper>标签的namespace命名空间的值为接口的全限定类名。