中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Spring雙數據庫是怎樣配置的

發布時間:2021-09-18 17:48:37 來源:億速云 閱讀:135 作者:柒染 欄目:編程語言

這篇文章將為大家詳細講解有關Spring雙數據庫是怎樣配置的,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

有時候我們可能在一個項目中使用兩個數據庫,為了實現使用兩個或多個數據庫的功能,我們需要在Spring中配置相關信息。

首先是添加配置文件conf.properties

<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">          <property name="locations">              <list>                  <value>classpath:config.properties</value>              </list>          </property>  </bean>

其次是添加數據源(${...}對應的是conf.properties中的配置信息)

<!--對應數據A的數據源-->  <bean id="dataSource_A" class="org.apache.commons.dbcp.BasicDataSource">          <property name="driverClassName" value="${A.driver_class}" />          <property name="url" value="${A.url}" />          <property name="username" value="${A.username}" />          <property name="password" value="${A.password}" />  </bean>  <!--對應數據庫B的數據源-->  <bean id="dataSource_B" class="org.apache.commons.dbcp.BasicDataSource">          <property name="driverClassName" value="${B.driver_class}" />          <property name="url" value="${B.url}" />          <property name="username" value="${B.username}" />          <property name="password" value="${B.password}" />  </bean>

之后是添加對應的sessionFactory:

<!-- A的sessionFactory -->      <bean id="sessionFactory_A" class="moretv.commons.spring.hibernate3.AnnotationSessionFactoryBean">          <property name="dataSource" ref="dataSource_A"/>      </bean>  <!-- B的sessionFactory -->      <bean id="sessionFactory_B" class="moretv.commons.spring.hibernate3.AnnotationSessionFactoryBean">          <property name="dataSource" ref="dataSource_B"/>          </bean>

在項目中的dao層有時會出現這樣的配置信息:

<bean id = "XDao" class = "xxx.xxx.xDaoImpl">  <property name="sessionFactory" ref="sessionFactory"></property>  </bean>

為了實現使用兩個不同的數據庫,可以改成

<span style="font-family:'sans serif', tahoma, verdana, helvetica;font-size:13px;line-height:19px;white-space:normal;background-color:#ffffff;">&nbsp;</span><span style="font-family:'sans serif', tahoma, verdana, helvetica;white-space:normal;background-color:#ffffff;"><!--使用A數據庫的DAO--></span> <bean id = "XDao" class = "xxx.xxx.xDaoImpl">  <property name="sessionFactory" ref="sessionFactory_A"></property>  </bean>  <!--使用B數據庫的DAO-->  <bean id = "XDao" class = "xxx.xxx.xDaoImpl">  <property name="sessionFactory" ref="sessionFactory_B"></property>  </bean>

這樣就能實現雙數據庫了。。。。

關于Spring雙數據庫是怎樣配置的就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

自治县| 巴彦淖尔市| 雅安市| 金寨县| 昭通市| 潼南县| 广德县| 张家川| 丁青县| 昆山市| 册亨县| 达拉特旗| 赫章县| 太原市| 杭州市| 西昌市| 大宁县| 泰宁县| 资阳市| 武鸣县| 加查县| 乃东县| 遂宁市| 大埔区| 龙胜| 额敏县| 碌曲县| 工布江达县| 思南县| 奉新县| 建湖县| 天镇县| 县级市| 广昌县| 黄陵县| 涪陵区| 印江| 贵定县| 樟树市| 县级市| 莲花县|