在MyBatis中,extends关键字主要用于扩展已有的映射文件或配置文件。通过extends关键字,可以实现对已有映射文件或配置文件的重用,减少代码的重复编写。
要正确使用extends关键字,需要在子映射文件中使用
<sql id="selectColumns">
id, name, age
</sql>
<mapper namespace="com.example.ChildMapper" extends="com.example.ParentMapper">
<select id="selectUsers" resultType="User">
SELECT
<include refid="selectColumns"/>
FROM users
</select>
</mapper>
通过以上步骤,子映射文件中的SQL语句将会继承父映射文件中定义的SQL语句,实现了代码的重用和减少冗余。需要注意的是,extends关键字只能继承父映射文件中定义的