在 MyBatis 的配置文件中,可以使用 <mapper> 元素来配置 Mapper 接口的路径。
mybatis-config.xml)中,添加 <mappers> 元素。例如:<configuration> ... <mappers> <!-- 配置 Mapper 接口的路径 --> <mapper resource="com/example/mappers/ExampleMapper.xml"/> <mapper class="com.example.mappers.AnotherMapper"/> <package name="com.example.mappers"/> </mappers> ...</configuration>使用 <mapper> 元素来配置每个 Mapper 接口的路径。可以使用三种方式来配置:使用 resource 属性来指定 Mapper XML 文件的路径,例如 <mapper resource="com/example/mappers/ExampleMapper.xml"/>。使用 class 属性来指定 Mapper 接口的全限定名,例如 <mapper class="com.example.mappers.AnotherMapper"/>。使用 package 元素来指定一个包,MyBatis 会自动扫描该包下的所有 Mapper 接口,例如 <package name="com.example.mappers"/>。注意:可以同时使用 resource、class 和 package 来配置 Mapper 接口的路径。
这样配置后,MyBatis 会根据配置的路径自动扫描并加载对应的 Mapper 接口。


