在 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 會根據(jù)配置的路徑自動掃描并加載對應(yīng)的 Mapper 接口。