使用数据源代理时创建了多个数据源 bean
Multiple datasource beans are created while using datasource-proxy
我正在尝试使用来自 Here
的当前应用程序实施数据源代理
我在 spring xml 中配置了数据源对象,即在 dataSourceProxy 对象中传递 dataSourceReal。
侦听器和过滤器已按照文档正确配置。
Spring xml 文件:
<bean id="dataSourceReal" class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName" value="jdbc/myDS" />
<property name="resourceRef" value="true" />
<property name="lookupOnStartup" value="false" />
<property name="proxyInterface" value="javax.sql.DataSource" />
</bean>
<bean id="dataSourceProxy" class="net.ttddyy.dsproxy.support.ProxyDataSource">
<property name="dataSource" ref="dataSourceReal" />
<property name="listener" ref="listeners" />
</bean>
<bean id="listeners" class="net.ttddyy.dsproxy.listener.ChainListener">
<property name="listeners">
<list>
<bean
class="com.my.sql.logging.DataSourceQueryLoggingListener" />
</list>
</property>
</bean>
xml 数据源名称的 JNDI 名称文件:
<Resource name="jdbc/myDS" auth="Container"
type="javax.sql.DataSource"
maxActive="25" maxIdle="5" maxWait="10000"
username="abc" password="abc"
driverClassName="oracle.jdbc.driver.OracleDriver"
url="jdbc:oracle:thin:@localhost:1521:myDB"
validationQuery="Select 1 from dual" />
我收到这个错误:
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No unique bean of type [javax.sql.DataSource] is defined: expected single matching bean but found 2: [dataSourceReal, dataSourceProxy]
请帮忙。
我终于从 here
找到了解决这个问题的办法
每当我们的应用程序配置了多个数据源时,
我们可以在 java
中的主 bean 上指定 @Primary
注释
或
当使用xml时,我们可以指定我们的主bean为
<bean id="dataSourceProxy" primary="true" class="net.ttddyy.dsproxy.support.ProxyDataSource">
我正在尝试使用来自 Here
的当前应用程序实施数据源代理我在 spring xml 中配置了数据源对象,即在 dataSourceProxy 对象中传递 dataSourceReal。
侦听器和过滤器已按照文档正确配置。
Spring xml 文件:
<bean id="dataSourceReal" class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName" value="jdbc/myDS" />
<property name="resourceRef" value="true" />
<property name="lookupOnStartup" value="false" />
<property name="proxyInterface" value="javax.sql.DataSource" />
</bean>
<bean id="dataSourceProxy" class="net.ttddyy.dsproxy.support.ProxyDataSource">
<property name="dataSource" ref="dataSourceReal" />
<property name="listener" ref="listeners" />
</bean>
<bean id="listeners" class="net.ttddyy.dsproxy.listener.ChainListener">
<property name="listeners">
<list>
<bean
class="com.my.sql.logging.DataSourceQueryLoggingListener" />
</list>
</property>
</bean>
xml 数据源名称的 JNDI 名称文件:
<Resource name="jdbc/myDS" auth="Container"
type="javax.sql.DataSource"
maxActive="25" maxIdle="5" maxWait="10000"
username="abc" password="abc"
driverClassName="oracle.jdbc.driver.OracleDriver"
url="jdbc:oracle:thin:@localhost:1521:myDB"
validationQuery="Select 1 from dual" />
我收到这个错误:
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No unique bean of type [javax.sql.DataSource] is defined: expected single matching bean but found 2: [dataSourceReal, dataSourceProxy]
请帮忙。
我终于从 here
找到了解决这个问题的办法每当我们的应用程序配置了多个数据源时,
我们可以在 java
中的主 bean 上指定@Primary
注释
或
当使用xml时,我们可以指定我们的主bean为
<bean id="dataSourceProxy" primary="true" class="net.ttddyy.dsproxy.support.ProxyDataSource">