2017-04-20 69 views
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> 
+0

你有一個typo ir真的有2個名爲「datasource1」的bean嗎?根據發佈的錯誤,你有兩個同名的bean。嘗試使其中一個「主要」。還嘗試@Autowire私人DataSource datasource1;作爲類字段而不是傳遞給方法。 – StanislavL

+0

爲什麼不能更改'datasources.xml'? –

+0

你可以使用datasources.xml更新問題 – pvpkiran

回答

0

這是不工作的原因是因爲XML配置總是替代Java的配置(見https://jira.spring.io/browse/SPR-7028)。

爲了解決這個問題,我需要創建一個有不同名稱的bean,然後在xml中創建一個,並將該新bean標記爲@Primary

所以現在我將有三個數據源bean,兩個連接到相同的數據庫模式,但只有一個標記的Primary,所以它將用於默認位置而不是xml定義的位置。

相關問題