映射介绍
<!-- 6.mappers:将我们写好的sql映射文件注册到全局配置中 mapper:注册一个sql映射 ①注册配置文件 resource:引用类路径下的sql映射文件 url:引用网络路径或者磁盘路径下的sql映射文件 ②注册映射接口 class:注册单个sql接口; package:批量注册sql接口,属性name指定sql接口所在包 1、有sql映射文件时,映射文件名和接口名必须相同!!!并且在同一目录下!!!; 2、没有sql映射文件;所有的sql都是利用注解写在接口上(不好管理sql) --> <mappers> <!-- <mapper resource="com/pxxy/bean/EmployeeMapper.xml"/> --> <!-- <mapper class="com.pxxy.bean.EmployeeMapper"/> --> <package name="com.pxxy.bean"/> </mappers>
注意
原文地址:https://www.cnblogs.com/lyh233/p/12337504.html
时间: 2024-11-08 00:59:08