0

spring を使用して 2 つの sessionFactory を構成しようとしています。私の設定はここにリストされているものに似ています

ここに私のconfig.xmlがあります

<bean id="dataSource"
    class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="url">
        <value>${hibernate.connection.url}</value>
    </property>
    <property name="driverClassName">
        <value>${hibernate.connection.driver_class}</value>
    </property>
    <property name="username">
        <value>${hibernate.connection.username}</value>
    </property>
    <property name="password">
        <value>${hibernate.connection.password}</value>
    </property>
</bean>

<bean id="sessionFactory"
    class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
    <property name="dataSource">
        <ref bean="dataSource" />
    </property>
    <property name="mappingResources">
        <list>
            ...Mappings
        </list>
    </property>
    <property name="hibernateProperties">
        <props>
            <prop key="hibernate.dialect">
                ${hibernate.dialect}
            </prop>
            <prop key="hibernate.jdbc.batch_size">${hibernate.jdbc.batch_size}</prop>
            <prop key="hibernate.cache.use_query_cache">true</prop>
            <prop key="hibernate.default_batch_fetch_size">${hibernate.default_batch_fetch_size}</prop>
            <prop key="hibernate.c3p0.min_size">${hibernate.c3p0.min_size}</prop>
            <prop key="hibernate.c3p0.max_size">${hibernate.c3p0.max_size}</prop>
            <prop key="hibernate.c3p0.timeout">${hibernate.c3p0.timeout}</prop>
            <prop key="hibernate.c3p0.max_statements">${hibernate.c3p0.max_statements}</prop>
            <prop key="hibernate.connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</prop>
        </props>
    </property>
</bean>

<bean id="dataSource2"
    class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="url">
        <value>${hibernate.connection.mirror_url}</value>
    </property>
    <property name="driverClassName">
        <value>${hibernate.connection.driver_class}</value>
    </property>
    <property name="username">
        <value>${hibernate.connection.mirror_username}</value>
    </property>
    <property name="password">
        <value>${hibernate.connection.mirror_password}</value>
    </property>
</bean>

<bean id="sessionFactory2"
    class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
    <property name="dataSource">
        <ref bean="dataSource2" />
    </property>
    <property name="mappingResources">
        <list>
            ...Mappings
        </list>
    </property>
    <property name="hibernateProperties">
        <props>
            <prop key="hibernate.dialect">
                ${hibernate.dialect}
            </prop>
            <prop key="hibernate.jdbc.batch_size">${hibernate.jdbc.batch_size}</prop>
            <prop key="hibernate.cache.use_query_cache">true</prop>
            <prop key="hibernate.default_batch_fetch_size">${hibernate.default_batch_fetch_size}</prop>
            <prop key="hibernate.c3p0.min_size">${hibernate.c3p0.min_size}</prop>
            <prop key="hibernate.c3p0.max_size">${hibernate.c3p0.max_size}</prop>
            <prop key="hibernate.c3p0.timeout">${hibernate.c3p0.timeout}</prop>
            <prop key="hibernate.c3p0.max_statements">${hibernate.c3p0.max_statements}</prop>
            <prop key="hibernate.connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</prop>
        </props>
    </property>
</bean>

次に、各daoに異なるsessionFactoryが割り当てられます

<bean id="productDao"
    class="test.dao.ProductDaoHibernate">
    <property name="sessionFactory"><ref bean="sessionFactory" /></property>
</bean>

<bean id="currencyDao"
    class="test.dao.CurrencyDaoHibernate">
    <property name="sessionFactory"><ref bean="sessionFactory2" /></property>
</bean>

この構成は、コンテキストに追加されるとロードされます

web.xml:

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/classes/test-data.xml /WEB-INF/classes/test-services.xml ... </param-value>
</context-param>

各 sessionFactory が構築したサーバーを起動するたびに問題が発生しますが、2 番目のセッションの最後に次のように表示されます。

[INFO] [org.springframework.beans.factory.support.DefaultListableBeanFactory]:? - Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@97aaa6: defining beans [... Many elements...]; root of factory hierarchy
[INFO] [org.springframework.orm.hibernate3.LocalSessionFactoryBean]:? - Closing Hibernate SessionFactory
[INFO] [org.hibernate.impl.SessionFactoryImpl]:? - closing
[INFO] [org.springframework.orm.hibernate3.LocalSessionFactoryBean]:? - Closing Hibernate SessionFactory
[INFO] [org.hibernate.impl.SessionFactoryImpl]:? - closing

さらに情報が必要な場合は、お問い合わせください。

4

2 に答える 2

0

本当はコメントのはずなのに評判が足りない(要50点)

まったく同じ構成の 2 つの異なる Bean ID を作成しようとしているようです。1 つの方法は、同じ構成を指す 2 つの異なるセッション オブジェクトが必要かどうかを判断することです。別の方法は、構成を別のファイルに追加して、個別にロードすることです。コードでこれらの構成を使用しようとしている方法を追加してください。

于 2014-01-03T22:19:27.617 に答える