<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" ><mappernamespace="com.hlj.dao.mybatis.demo.FatherMapper"><selectid="findById1"resultType="com.hlj.entity.db.demo.DemoEntity">
select * from demo_entity d where d.id = 1
</select><selectid="extendMethod"resultType="com.hlj.entity.db.demo.DemoEntity">
select * from demo_entity d where d.id = 2
</select></mapper>
2.2、子xml
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" ><mappernamespace="com.hlj.dao.mybatis.demo.SonMapper"><selectid="extendMethod"resultType="com.hlj.entity.db.demo.DemoEntity">
select * from demo_entity d where d.id = 4
</select><selectid="findById3"resultType="com.hlj.entity.db.demo.DemoEntity">
select * from demo_entity d where d.id = 3
</select></mapper>