0
我有兩個數據源定義了「datasource1」和「datasource2」(來自依賴項的xml配置)。 因爲我沒有得到JdbcTemplate的默認配置,所以我需要做手工的,我不喜歡這樣寫道:限定符不適用於Spring Boot中的DataSource
1.
@Bean
public JdbcOperations jdbcOperations(DataSource datasource1) {
return new JdbcTemplate(datasource1);
}
2.
@Bean
public JdbcOperations jdbcOperations(@Qualifier("datasource1") DataSource datasource1) {
return new JdbcTemplate(datasource1);
}
在兩種情況下都失敗:
Parameter 0 of method jdbcOperations in com.example.PersistentConfig required a single bean, but 2 were found:
- datasource1: defined in class path resource [datasources.xml]
- datasource2: defined in class path resource [datasources.xml]
爲什麼限定符不起作用?
我無法更改datasources.xml
文件以將primary=true
添加到datasource
。
datasources.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<bean id="datasource1"
class="com.example.database.IdentifiedLazyConnectionDataSourceProxy">
<qualifier value="datasource1"/>
<property name="targetDataSource">
<bean class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName" value="java:comp/env/ak1Database"/>
<property name="resourceRef" value="true"/>
</bean>
</property>
<property name="identifier" value="shared"/>
</bean>
<bean id="datasource2"
class="com.example.database.IdentifiedLazyConnectionDataSourceProxy">
<qualifier value="datasource2"/>
<property name="targetDataSource">
<bean class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName" value="java:comp/env/ak2Database"/>
<property name="resourceRef" value="true"/>
</bean>
</property>
<property name="identifier" value="shared"/>
</bean>
</beans>
你有一個typo ir真的有2個名爲「datasource1」的bean嗎?根據發佈的錯誤,你有兩個同名的bean。嘗試使其中一個「主要」。還嘗試@Autowire私人DataSource datasource1;作爲類字段而不是傳遞給方法。 – StanislavL
爲什麼不能更改'datasources.xml'? –
你可以使用datasources.xml更新問題 – pvpkiran