亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

使用spring怎么對mybatis進行整合

發布時間:2020-12-07 16:44:43 來源:億速云 閱讀:213 作者:Leah 欄目:編程語言

本篇文章為大家展示了使用spring怎么對mybatis進行整合,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

1 數據庫連接配置信息jdbc.properties

#mysql version database druid
# setting
validationQuery=SELECT 1 
jdbc.driverClassName=com.mysql.jdbc.Driver 
jdbc.url=jdbc:mysql://localhost:3306/ivan?useUnicode=true&characterEncoding=utf-8&useSSL=true 
jdbc.username=root
jdbc.password=root

2 spring配置文件spring-register.xml

<&#63;xml version="1.0" encoding="UTF-8"&#63;>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:dubbo="http://code.alibabatech.com/schema/dubbo" xmlns="http://www.springframework.org/schema/beans"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
  http://www.springframework.org/schema/beans/spring-beans.xsd
  http://code.alibabatech.com/schema/dubbo
  http://code.alibabatech.com/schema/dubbo/dubbo.xsd">
 <!--引入配置文件-->
 <!--  <context:property-placeholder location="classpath:config/jdbc.properties"/>-->
 <bean class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">
  <property name="locations">
   <list>
    <value>classpath:config/zookeeper.properties</value>
    <value>classpath:config/jdbc.properties</value>
    <value>classpath:config/log4j.properties</value>
   </list>
  </property>
 </bean>
 <bean id="userService" class="com.ivan.dubbo.service.impl.UserServiceImpl"/>
 <!--提供方應用信息,用于計算依賴關系-->
 <dubbo:application name="ivan-dubbo-server"></dubbo:application>
 <!--使用zookeeper廣播注冊中心暴露服務地址-->
  <dubbo:registry protocol="zookeeper" address="127.0.0.1:2181" />
 <!-- 本機 偽集群 測試 -->
 <!-- <dubbo:registry protocol="zookeeper" address="zookeeper://127.0.0.1:4170&#63;backup=127.0.0.1:4180,127.0.0.1:4190" />-->
<!-- <dubbo:registry protocol="zookeeper" address="127.0.0.1:4170,127.0.0.1:4180,127.0.0.1:4190"/>-->
 <!-- <dubbo:registry id="ivan-dubbo-server1" protocol="zookeeper" address="127.0.0.1:4170" />
  <dubbo:registry id="ivan-dubbo-server2" protocol="zookeeper" address="127.0.0.1:4180" />
  <dubbo:registry id="ivan-dubbo-server3" protocol="zookeeper" address="127.0.0.1:4190" />
 -->
 <!---使用dubbo協議在20880端口暴露服務-->
 <dubbo:protocol name="dubbo" port="20880"/>
 <!--
    官方注釋:掃描注解包路徑,多個包用逗號分隔,不填pacakge表示掃描當前ApplicationContext中所有的類。
    測試發現:此處package不填寫包名會無法注冊Service,掃描全包需填寫包首即可或者填寫至類的上一級目錄。
   -->
 <dubbo:annotation package="com"/>
 <dubbo:service interface="com.ivan.service.provider.UserService" ref="userService" timeout="1200000"></dubbo:service>
</beans>

3 spring-mybatis.xml

<&#63;xml version="1.0" encoding="UTF-8"&#63;>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:tx="http://www.springframework.org/schema/tx" xmlns="http://www.springframework.org/schema/beans"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx-4.1.xsd">
 <!--配置數據源-->
 <bean name="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close">
  <property name="driverClassName" value="${jdbc.driverClassName}" />
  <property name="url" value="${jdbc.url}"/>
  <property name="username" value="${jdbc.username}"/>
  <property name="password" value="${jdbc.password}"/>
  <!--初始化連接池大小-->
  <property name="initialSize" value="5"/>
  <property name="maxActive" value="20"/>
  <!--連接池最小空閑-->
  <property name="minIdle" value="0"/>
  <!--獲取連接池最大等待時間-->
  <property name="maxWait" value="60000"/>
  <property name="poolPreparedStatements" value="true"/>
  <property name="maxPoolPreparedStatementPerConnectionSize" value="33"/>
  <!--檢測有效sql-->
  <property name="validationQuery" value="${validationQuery}"/>
  <property name="testOnBorrow" value="false"/>
  <property name="testOnReturn" value="false"/>
  <property name="testWhileIdle" value="true"/>
  <!-- 配置間隔多久才進行一次檢測,檢測需要關閉的空閑連接,單位是毫秒 -->
  <property name="timeBetweenEvictionRunsMillis" value="60000"/>
  <!-- 配置一個連接在池中最小生存的時間,單位是毫秒 -->
  <property name="minEvictableIdleTimeMillis" value="25200000"/>
  <!-- 打開removeAbandoned功能 -->
  <property name="removeAbandoned" value="true"/>
  <!-- 1800秒,也就是30分鐘 -->
  <property name="removeAbandonedTimeout" value="1800"/>
  <!-- 關閉abanded連接時輸出錯誤日志 -->
  <property name="logAbandoned" value="true"/>
  <!-- 監控數據庫 -->
  <property name="filters" value="mergeStat"/>
 </bean>
 <!--MyBatis配置文件-->
 <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
  <property name="dataSource" ref="dataSource"/>
  <property name="mapperLocations" value="classpath*:com/ivan/**/mapping/*.xml"/>
 </bean>
 <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
  <property name="basePackage" value="com.ivan.dubbo.service.dao.mapper"/>
  <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
 </bean>
 <!--配置事務管理-->
 <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
  <property name="dataSource" ref="dataSource"/>
 </bean>
 <!--注解方式配置事務-->
<!-- <tx:annotation-driven transaction-manager="transactionManager"/>-->
 <!-- 攔截器方式配置事物 -->
 <tx:advice id="transactionAdvice" transaction-manager="transactionManager">
  <tx:attributes>
   <tx:method name="insert*" propagation="REQUIRED"/>
   <tx:method name="update*" propagation="REQUIRED"/>
   <tx:method name="delete*" propagation="REQUIRED"/>
   <tx:method name="get*" propagation="SUPPORTS" read-only="true"/>
   <tx:method name="find*" propagation="SUPPORTS" read-only="true"/>
   <tx:method name="select*" propagation="SUPPORTS" read-only="true"/>
  </tx:attributes>
 </tx:advice>
 <!--
<span >       </span>Spring aop事務管理
<span >       此處配置正確無法發布提供者服務,目前沒找到解決方案</span>
    -->
 <!-- <aop:config>
   <aop:pointcut id="transactionPointcut" expression="execution(* com.ivan..service.impl.*Impl.*(..))" />
   <aop:advisor advice-ref="transactionAdvice" pointcut-ref="transactionPointcut"/>
 </aop:config> -->
</beans>

上述內容就是使用spring怎么對mybatis進行整合,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

西安市| 绥德县| 儋州市| 包头市| 永德县| 和林格尔县| 章丘市| 谢通门县| 读书| 梁平县| 上犹县| 绍兴市| 萝北县| 嘉黎县| 德阳市| 沽源县| 贵定县| 汤原县| 吴旗县| 东海县| 名山县| 连江县| 米易县| 稻城县| 三江| 甘孜| 和顺县| 铁力市| 阿巴嘎旗| 辽阳市| 南漳县| 阳信县| 利川市| 濮阳县| 万年县| 富裕县| 囊谦县| 普安县| 栖霞市| 佛教| 郯城县|