溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

spring與mybatis的整合

發(fā)布時(shí)間:2020-07-16 22:28:06 來(lái)源:網(wǎng)絡(luò) 閱讀:535 作者:乾坤刀 欄目:開(kāi)發(fā)技術(shù)

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"

       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

       xmlns:context="http://www.springframework.org/schema/context"

       xmlns:tx="http://www.springframework.org/schema/tx"

       xmlns:aop="http://www.springframework.org/schema/aop"

       xsi:schemaLocation="http://www.springframework.org/schema/beans

           http://www.springframework.org/schema/beans/spring-beans.xsd

           http://www.springframework.org/schema/context

           http://www.springframework.org/schema/context/spring-context.xsd

           http://www.springframework.org/schema/tx

           http://www.springframework.org/schema/tx/spring-tx.xsd

           http://www.springframework.org/schema/aop

           http://www.springframework.org/schema/aop/spring-aop.xsd

           ">

<!--引入配置屬性文件 -->

<context:property-placeholder ignore-unresolvable="true" location="classpath:jdbc.properties" />

<!-- 配置數(shù)據(jù)源 使用的是Druid數(shù)據(jù)源 -->

<bean name="dataSource" class="com.alibaba.druid.pool.DruidDataSource"

init-method="init" destroy-method="close">

<property name="url" value="${mysql.jdbc.url}" />

<property name="username" value="${mysql.jdbc.username}" />

<property name="password" value="${mysql.jdbc.password}" />


<!-- 初始化連接大小 -->

<property name="initialSize" value="0" />

<!-- 連接池最大使用連接數(shù)量 -->

<property name="maxActive" value="20" />


<!-- 連接池最小空閑 -->

<property name="minIdle" value="0" />

<!-- 獲取連接最大等待時(shí)間 -->

<property name="maxWait" value="60000" />

<property name="poolPreparedStatements" value="true" />

<property name="maxPoolPreparedStatementPerConnectionSize" value="33" />

<!-- 用來(lái)檢測(cè)有效sql -->

<property name="validationQuery" value="${validationQuery}" />

<property name="testOnBorrow" value="false" />

<property name="testOnReturn" value="false" />

<property name="testWhileIdle" value="true" />

<!-- 配置間隔多久才進(jìn)行一次檢測(cè),檢測(cè)需要關(guān)閉的空閑連接,單位是毫秒 -->

<property name="timeBetweenEvictionRunsMillis" value="60000" />

<!-- 配置一個(gè)連接在池中最小生存的時(shí)間,單位是毫秒 -->

<property name="minEvictableIdleTimeMillis" value="25200000" />

<!-- 打開(kāi)removeAbandoned功能 -->

<property name="removeAbandoned" value="true" />

<!-- 1800秒,也就是30分鐘 -->

<property name="removeAbandonedTimeout" value="1800" />

<!-- 關(guān)閉abanded連接時(shí)輸出錯(cuò)誤日志 -->

<property name="logAbandoned" value="true" />

<!-- 監(jiān)控?cái)?shù)據(jù)庫(kù) 

<property name="filters" value="mergeStat" />

-->

</bean>


<!-- 創(chuàng)建SqlSessionFactory -->

<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">

<!-- 數(shù)據(jù)源:必須屬性 -->

<property name="dataSource" ref="dataSource" />

<!-- 指定mybatis配置文件,如settings和typeAliases  -->

<property name="configLocation" value="classpath*:mybatis-config.xml" />

<!-- 指定mybatis的 XML映射器文件地址 -->

<property name="mapperLocations" value="classpath*:mybatis/**/*.xml" />

<!-- 可在mybatis配置文件中設(shè)置 -->

<property name="configuration">

   <bean class="org.apache.ibatis.session.Configuration">

     <property name="mapUnderscoreToCamelCase" value="true"/>

   </bean>

</property>

<!-- 使用mybatis的事務(wù)管理器,而不是spring事務(wù)管理器(不推薦) -->

<property name="transactionFactory">

   <bean class="org.apache.ibatis.transaction.managed.ManagedTransactionFactory" />

</property> 

</bean>


<!-- 創(chuàng)建sqlSession: SqlSessionTemplate

   1.需要自己編寫dao層接口及其實(shí)現(xiàn)類

   2.在實(shí)現(xiàn)類中注入SqlSessionTemplate或繼承SqlSessionDaoSupport

-->

<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">

 <constructor-arg index="0" ref="sqlSessionFactory" />

 <constructor-arg index="1" value="BATCH" />

</bean>


<!-- 不需要使用SqlSessionTemplate和SqlSessionDaoSupport,直接通過(guò)映射器接口,由spring創(chuàng)建代理來(lái)實(shí)現(xiàn)

   注:

    1.必須是接口而且必須與映射xml文件命名空間對(duì)應(yīng)

    2.需要一個(gè)一個(gè)地的創(chuàng)建       

-->    

<bean id="userMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">

 <property name="mapperInterface" value="com.demo.dao.UserDao" />

 <property name="sqlSessionFactory" ref="sqlSessionFactory" />

</bean>


<!-- MapperScannerConfigurer的使用與MapperFactoryBean相似,

   只不過(guò)MapperScannerConfigurer會(huì)根據(jù)package來(lái)創(chuàng)建MapperFactoryBean  

-->

<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">

  <property name="basePackage" value="com.demo.dao" />

  <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />

</bean>


<!-- 配置事務(wù)管理器 -->

<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">

  <property name="dataSource" ref="dataSource" />

</bean>


<!-- 注解方式配置事物 -->

<tx:annotation-driven transaction-manager="transactionManager" />


</beans>


說(shuō)明:

1、mybatis-spring的整合也主要是創(chuàng)建sqlSessionFactory和sqlSession

2、創(chuàng)建sqlSessionFactory是必須的且統(tǒng)一的。

3、sqlSession有多種配置

 3.1 SqlSessionTemplate


<!--創(chuàng)建sqlSession: SqlSessionTemplate
  1.需要自己編寫dao層接口及其實(shí)現(xiàn)類
  2.在實(shí)現(xiàn)類中注入SqlSessionTemplate或繼承SqlSessionDaoSupport
-->
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
  <constructor-arg index="0" ref="sqlSessionFactory"/>
  <constructor-arg index="1" value="BATCH" />
</bean>


<!-- 不需要使用SqlSessionTemplate和SqlSessionDaoSupport,直接通過(guò)映射器接口,由spring創(chuàng)建代理來(lái)實(shí)現(xiàn)

    注:1.必須是接口而且必須與映射xml文件命名空間對(duì)應(yīng); 

        2.需要一個(gè)一個(gè)地的創(chuàng)建

-->    
<bean id="userMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">
   <property name="mapperInterface" value="com.demo.dao.UserDao" />
   <property name="sqlSessionFactory" ref="sqlSessionFactory" />
</bean>


<!-- MapperScannerConfigurer的使用與MapperFactoryBean相似,只不過(guò)MapperScannerConfigurer會(huì)根據(jù)package來(lái)創(chuàng)建MapperFactoryBean -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
 <property name="basePackage" value="com.demo.dao" />
 <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />

</bean>



參考地址:http://www.mybatis.org/spring/zh/batch.html

向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI