91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring怎么整合mybatis

發布時間:2020-07-16 14:03:35 來源:億速云 閱讀:143 作者:小豬 欄目:開發技術

這篇文章主要為大家展示了Spring怎么整合mybatis,內容簡而易懂,下面讓小編帶大家一起學習一下吧。

增加了用于處理MyBatis的兩個bean:SqlSessionFactoryBean、MapperFactoryBean

1、注冊SqlSessionFactoryBean:

Spring怎么整合mybatis

(1)實現 InitializingBean:調用其afterPropertiesSet方法(this.sqlSessionFactory = buildSqlSessionFactory())

目的就是對于sqlSessionFactory的初始化。

(2)FactoryBean:getBean方法獲取bean(= 獲取此類的getObject()返回的實例)

if (this.sqlSessionFactory == null) {
    afterPropertiesSet();
  }
return this.sqlSessionFactory;

2、注冊MapperFactoryBean:

Spring怎么整合mybatis

同樣實現FactoryBean和InitializingBean

this.sqlSessionTemplate = createSqlSessionTemplate(sqlSessionFactory);
//sqlSession作為根據接口創建映射器代理的接觸類一定不可以為空,
設定其sqlSessionFactory屬性時完成初始化。
<bean id="userMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">
  <property name="mapperInterface" value="org.cellphone.uc.repo.mapper.UserMapper"/>
  <property name="sqlSessionFactory" ref="sqlSessionFactory"/>
</bean>//接口是映射器的基礎,sqlSession會根據接口動態創建相應的代理類,所以接口必不可少。

1.0:UserMapper userMapper = sqlSession.getMapper(UserMapper.class);

2.0:UserMapper userMapper = (UserMapper) context.getBean("userMapper");

//MyBatis在獲取映射的過程中根據配置信息為UserMapper類型動態創建了代理類

3、使用MapperScannerConfigurer:

Spring怎么整合mybatis

讓它掃描特定的包,自動幫我們成批地創建映射器。不需要我們對于每個接口都注冊一個MapperFactoryBean類型的對應的bean,在掃描的過程中通過編碼的方式動態注冊。

抽象:屏蔽掉了最原始的代碼(userMapper的創建)而增加了MapperScannerConfigurer的配置

以上就是關于Spring怎么整合mybatis的內容,如果你們有學習到知識或者技能,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

仙桃市| 丰台区| 于都县| 绍兴市| 黄平县| 肃北| 灌阳县| 衡东县| 木兰县| 韩城市| 黎川县| 玛曲县| 海宁市| 商洛市| 彰武县| 大足县| 阿合奇县| 莒南县| 东安县| 共和县| 深泽县| 包头市| 密山市| 宝山区| 宿州市| 长汀县| 政和县| 四子王旗| 永嘉县| 石楼县| 犍为县| 台前县| 卢湾区| 昭觉县| 高密市| 牡丹江市| 锡林浩特市| 湖北省| 镇江市| 贵州省| 依安县|