获取文件路径一般分两种:相对路径和绝对路径
相对路径法,mybatis-config.xml在src目录下,获取src文件夹下mapping包下UserinfoMapper.xml映射文件示例
第一种写法:直接获取SQL映射xml文件
<mapper resource="mapping/UserinfoMapper.xml"/>
第二种写法:扫描包,注意接口的名称和xml的文件的主文件名必须一致
<mapper resource="mapping"/>
第三种写法:指定接口名称,注意接口的名称和xml的文件的主文件名必须一致
<mapper resource="mapping.UserinfoMapper"/>
绝对路径法
第四种写法:
<mapper resource="file:\\\C:\Users\workspace\MyBatis01\src\mapping\UserinfoMapper.xml"/>