溫馨提示×

mybatis怎么配置mapper路徑

小億
271
2024-02-01 15:15:39
欄目: 編程語言

在 MyBatis 的配置文件中,可以使用 <mapper> 元素來配置 Mapper 接口的路徑。

  1. 在 MyBatis 的配置文件(通常為 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>
  1. 使用 <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、classpackage 來配置 Mapper 接口的路徑。

這樣配置后,MyBatis 會根據(jù)配置的路徑自動掃描并加載對應(yīng)的 Mapper 接口。

0