您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“Mybatis使用@Mapper和@MapperScan注解實(shí)現(xiàn)映射關(guān)系的方法教程”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
使用@Mapper和@MapperScan注解實(shí)現(xiàn)映射關(guān)系
Mybatis-@MapperScan和mybatis:scan分析
<mybatis:scan>
MapperScan
MyBatis與Spring整合后需要實(shí)現(xiàn)實(shí)體和數(shù)據(jù)表的映射關(guān)系。
實(shí)現(xiàn)實(shí)體和數(shù)據(jù)表的映射關(guān)系可以在Mapper類上添加@Mapper注解,如下代碼:
/** * 用戶信息Mapper動(dòng)態(tài)代理接口 * @author pan_junbiao **/ @Mapper @Repository public interface UserMapper { /** * 新增用戶,并獲取自增主鍵 */ @Insert("INSERT INTO tb_user(user_account,user_password,blog_url,blog_remark) VALUES(#{userAccount},#{userPassword},#{blogUrl},#{blogRemark})") @Options(useGeneratedKeys = true, keyColumn = "user_id", keyProperty = "userId") //或者:@SelectKey(statement = "SELECT LAST_INSERT_ID()", keyColumn = "user_id", keyProperty = "userId",before = false, resultType = Integer.class) public int insertUser(UserInfo userInfo); /** * 修改用戶 */ @Update("UPDATE tb_user SET user_account = #{userAccount} ,user_password = #{userPassword} ,blog_url=#{blogUrl} ,blog_remark=#{blogRemark} WHERE user_id = #{userId}") public int updateUser(UserInfo userInfo); /** * 刪除用戶 */ @Delete("DELETE FROM tb_user WHERE user_id = #{userId}") public int deleteUser(int userId); /** * 根據(jù)用戶ID,獲取用戶信息 */ @Select("SELECT * FROM tb_user WHERE user_id = #{userId}") public UserInfo getUserById(int userId); }
但是建議以后直接在SpringBoot啟動(dòng)類中加 @MapperScan("com.pjb.mapper") 注解,這樣會(huì)比較方便,不需要對(duì)每個(gè)Mapper都添加@Mapper注解。
package com.pjb; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; /** * SpringBoot啟動(dòng)類 * @author pan_junbiao **/ @MapperScan("com.pjb.mapper") @SpringBootApplication public class SpringbootMybatisDemoApplication { public static void main(String[] args) { SpringApplication.run(SpringbootMybatisDemoApplication.class, args); } }
MyBatis-Spring-1.2.0 新增了兩種新的掃描映射器 Mapper 接口的方法:
使用<mybatis:scan/>元素
使用@MapperScan 注解(需要 Spring3.1+版本)
<mybatis:scan>元素將在特定的以逗號(hào)分隔的包名列表中搜索映射器 Mapper 接口。 使用這個(gè)新的 MyBatis-Spring 名空間你需要添加以下的 schema 聲明:
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mybatis="http://mybatis.org/schema/mybatis-spring" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://mybatis.org/schema/mybatis-spring http://mybatis.org/schema/mybatis-spring.xsd"> <mybatis:scan base-package="com.mybatis.x.mappers" /> </beans>
<mybatis:scan> 元素提供了下列的屬性來自定義掃描過程:
annotation
:掃描器將注冊(cè)所有的在 base-package 包內(nèi)并且匹配指定注解的映射器 Mapper 接口。
factory - ref
:當(dāng) Spring 上下文中有多個(gè)SqlSessionFactory實(shí)例時(shí),需要指定某一特定的SqlSessionFactory 來創(chuàng)建映射器 Mapper 接口。正常情況下,只有應(yīng)用程序中有一個(gè)以上的數(shù)據(jù)源才會(huì)使用。
marker - interface
:掃描器將注冊(cè)在 base-package 包中的并且繼承了特定的接口類的映射器 Mapper 接口
template - ref
:當(dāng) Spring 上下文中有多個(gè) SqlSessionTemplate 實(shí)例時(shí),需要指定某一特定的SqlSessionTemplate 來創(chuàng)建映射器 Mapper 接口。 正常情況下,只有應(yīng)用程序中有一個(gè)以上的數(shù)據(jù)源才會(huì)使用。
name-generator
:BeannameGenerator 類的完全限定類名,用來命名檢測(cè)到的組件。
Spring 3.x+版本支持使用@Configuration 和@Bean 注解來提供基于 Java 的配置。如果使用基于java的配置,可以使用@MapperScan 注解來掃描映射器 Mapper 接口。 @MapperScan 和<mybatis:scan/>工作方式
相同,并且也提供了對(duì)應(yīng)的自定義選項(xiàng)。
@Configuration @MapperScan("com.mybatis.x.mappers") public class AppConfig { @Bean public DataSource dataSource() { return new PooledDataSource("com.mysql.jdbc.Driver", "jdbc:mysql://localhost:3306/test", "root", "root"); } @Bean public SqlSessionFactory sqlSessionFactory() throws Exception { SqlSessionFactoryBeansessionFactory = new SqlSessionFactoryBean(); sessionFactory.setDataSource(dataSource()); return sessionFactory.getObject(); } }
@MapperScan 注解有以下屬性供自定義掃描過程使用:
annotationClass
:掃描器將注冊(cè)所有的在 base-package 包內(nèi)并且匹配指定注解的映射器 Mapper 接口。
markerInterface
:掃描器將注冊(cè)在 base-package 包中的并且繼承了特定的接口類的映射器 Mapper 接口
sqlSessionFactoryRef
:當(dāng)Spring上下文中有一個(gè)以上的 SqlSesssionFactory時(shí),用來指定特 SqlSessionFactory
sqlSessionTemplateRef
:當(dāng)Spring上下文中有一個(gè)以上的 sqlSessionTemplate時(shí),用來指定特定sqlSessionTemplate
nameGenerator
:BeanNameGenerator 類用來命名在 Spring 容器內(nèi)檢測(cè)到的組件。
basePackageClasses
:basePackages() 的類型安全的替代品。包內(nèi)的每一個(gè)類都會(huì)被掃描。
basePackages
:掃描器掃描的基包,掃描器會(huì)掃描內(nèi)部的 Mapper 接口。注意包內(nèi)的至少有一個(gè)方法聲明的才會(huì)被注冊(cè)。具體類將會(huì)被忽略。
當(dāng)然還可以在 applicationContext.xml 配置如下
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="basePackage" value="com.mybatis3.mappers" /> </bean>
使用 MapperScannerConfigurer 來掃描包 package ("com.mybatis3.mappers")下的所有 映射器 Mapper 接口,并自動(dòng)地注冊(cè)
“Mybatis使用@Mapper和@MapperScan注解實(shí)現(xiàn)映射關(guān)系的方法教程”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。