第一種:接口實現類繼承 SqlSessionDaoSupport:使用此種方法需要編寫
mapper 接口,mapper 接口實現類、mapper.xml 文件。
1、在 sqlMapConfig.xml 中配置 mapper.xml 的位置
<mappers>
<mapper resource="mapper.xml 文件的地址" />
<mapper resource="mapper.xml 文件的地址" />
</mappers>
1、定義 mapper 接口
3、實現類集成 SqlSessionDaoSupport
mapper 方法中可以 this.getSqlSession()進行數據增刪改查。
4、spring 配置
<bean id=" " class="mapper 接口的實現">
<property name="sqlSessionFactory"
ref="sqlSessionFactory"></property>
</bean>
第二種:使用 org.mybatis.spring.mapper.MapperFactoryBean:
1、在 sqlMapConfig.xml 中配置 mapper.xml 的位置,如果 mapper.xml 和
mappre 接口的名稱相同且在同一個目錄,這里可以不用配置
<mappers>
<mapper resource="mapper.xml 文件的地址" />
<mapper resource="mapper.xml 文件的地址" />
</mappers>
2、定義 mapper 接口:
第 48 頁 共 485 頁第 49 頁 共 485 頁
1、mapper.xml 中的 namespace 為 mapper 接口的地址
2、mapper 接口中的方法名和 mapper.xml 中的定義的 statement 的 id 保持一
致
3、Spring 中定義
<bean id="" class="org.mybatis.spring.mapper.MapperFactoryBean">
<property name="mapperInterface"
value="mapper 接口地址" />
<property name="sqlSessionFactory" ref="sqlSessionFactory" />
</bean>
第三種:使用 mapper 掃描器:
1、mapper.xml 文件編寫:
mapper.xml 中的 namespace 為 mapper 接口的地址;
mapper 接口中的方法名和 mapper.xml 中的定義的 statement 的 id 保持一致;
如果將 mapper.xml 和 mapper 接口的名稱保持一致則不用在 sqlMapConfig.xml
中進行配置。
2、定義 mapper 接口:
注意 mapper.xml 的文件名和 mapper 的接口名稱保持一致,且放在同一個目錄
3、配置 mapper 掃描器:
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="mapper 接口包地址
"></property>
<property name="sqlSessionFactoryBeanName"
value="sqlSessionFactory"/>
</bean>4、使用掃描器后從 spring 容器中獲取 mapper 的實現對象。