1

org.apache.commons.dbcp.BasicDataSource データソースを使用して春のプロジェクトを使用しています。

データベースでフェイルオーバーをサポートしたい場合、どこで構成すればよいですか?

Googleで参照を見つけることができません

4

1 に答える 1

2

あなたは質問で少し一般的でした。考えられる解決策をいくつか説明します。
c3p0 を使用できる場合は、ここに mysql サーバーの例を示します。tomcat server.xml で、次のように定義します。

    <Resource
    name="jdbc/trm"
    type="com.mchange.v2.c3p0.ComboPooledDataSource"
    driverClass="com.microsoft.sqlserver.jdbc.SQLServerDriver"
    password="password"
    user="username"
    auth="Container"
    description="DB Connection pool for TRM application"
    minPoolSize="2"
    maxPoolSize="4"
    acquireIncrement="1"
    factory="org.apache.naming.factory.BeanFactory"
    jdbcUrl=jdbc:mysql://localhost:3306,backupdb.something.com:3306/dbname
    preferredTestQuery="SELECT 'Connection' = 'true'"
    testConnectionOnCheckout="true"
    />

sql server replace の場合

    jdbcUrl=jdbc:mysql://localhost:3306,backupdb.something.com:3306/dbname

     jdbcUrl="jdbc:sqlserver://mainserver:1433;failoverPartner=backupserver;databaseName=nameofyourdatabase;applicationName=appname"

オラクルの場合、別のソリューションが推奨されます。春の公式ドキュメントへのリンクを提供します。

http://static.springsource.org/spring-data/jdbc/docs/current/reference/html/orcl.failover.html

そして、完成させるために使用する春の豆をここにコピーします。

    <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:orcl="http://www.springframework.org/schema/data/orcl"
           xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-3.0.xsd
           http://www.springframework.org/schema/data/orcl
           http://www.springframework.org/schema/data/orcl/spring-data-orcl-1.0.xsd">

        <orcl:pooling-datasource id="racDataSource"
            url="jdbc:oracle:thin:@(description=(address_list=
                (address=(host=rac1)(protocol=tcp)(port=1521))
                (address=(host=rac2)(protocol=tcp)(port=1521)))
                (connect_data=(service_name=racdb1)))"
            properties-location="classpath:orcl.properties"
            fast-connection-failover-enabled="true" 1
            ONS-configuration="rac1:6200,rac2:6200"/> 2

        <bean id="transactionManager" 
              class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
            <property name="dataSource" ref="racDataSource"/>
        </bean>

    </beans>

他のアプローチも可能です。たとえば、springframework から提供される AbstractRoutingDataSource を使用します。

于 2013-09-01T08:28:47.697 に答える