内射老阿姨1区2区3区4区_久久精品人人做人人爽电影蜜月_久久国产精品亚洲77777_99精品又大又爽又粗少妇毛片

Spring雙數(shù)據(jù)庫是怎樣配置的

這篇文章將為大家詳細(xì)講解有關(guān)Spring雙數(shù)據(jù)庫是怎樣配置的,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

成都創(chuàng)新互聯(lián)公司長期為上千家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對(duì)不同對(duì)象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺(tái),與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為玉田企業(yè)提供專業(yè)的成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)玉田網(wǎng)站改版等技術(shù)服務(wù)。擁有十多年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。

有時(shí)候我們可能在一個(gè)項(xiàng)目中使用兩個(gè)數(shù)據(jù)庫,為了實(shí)現(xiàn)使用兩個(gè)或多個(gè)數(shù)據(jù)庫的功能,我們需要在Spring中配置相關(guān)信息。

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

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

其次是添加數(shù)據(jù)源(${...}對(duì)應(yīng)的是conf.properties中的配置信息)

<!--對(duì)應(yīng)數(shù)據(jù)A的數(shù)據(jù)源-->  <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>  <!--對(duì)應(yīng)數(shù)據(jù)庫B的數(shù)據(jù)源-->  <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>

之后是添加對(duì)應(yīng)的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>

在項(xiàng)目中的dao層有時(shí)會(huì)出現(xiàn)這樣的配置信息:

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

為了實(shí)現(xiàn)使用兩個(gè)不同的數(shù)據(jù)庫,可以改成

<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數(shù)據(jù)庫的DAO--></span> <bean id = "XDao" class = "xxx.xxx.xDaoImpl">  <property name="sessionFactory" ref="sessionFactory_A"></property>  </bean>  <!--使用B數(shù)據(jù)庫的DAO-->  <bean id = "XDao" class = "xxx.xxx.xDaoImpl">  <property name="sessionFactory" ref="sessionFactory_B"></property>  </bean>

這樣就能實(shí)現(xiàn)雙數(shù)據(jù)庫了。。。。

關(guān)于Spring雙數(shù)據(jù)庫是怎樣配置的就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

分享名稱:Spring雙數(shù)據(jù)庫是怎樣配置的
路徑分享:http://m.rwnh.cn/article22/gdiojc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供手機(jī)網(wǎng)站建設(shè)網(wǎng)站營銷、網(wǎng)站策劃、虛擬主機(jī)、網(wǎng)站設(shè)計(jì)公司自適應(yīng)網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

綿陽服務(wù)器托管
韶山市| 武鸣县| 侯马市| 东山县| 古蔺县| 喀什市| 建阳市| 大理市| 东源县| 朔州市| 淅川县| 柞水县| 吉木乃县| 晋中市| 通化县| 闵行区| 文山县| 南开区| 德江县| 丘北县| 房产| 平顺县| 金川县| 台南县| 尉氏县| 岳池县| 象州县| 常州市| 长沙市| 西丰县| 泰和县| 望江县| 台东县| 乐都县| 怀远县| 郯城县| 东源县| 麻栗坡县| 扎兰屯市| 昌平区| 固阳县|