我在我的應用程序中使用了Spring批處理框架,其中我已成功集成了Spring批處理管理器。當我試圖爲JdbcTemplate創建bean時。它給我以下錯誤:在Spring批處理和Spring批次管理集成中DataSource衝突
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSourceInitializer': Invocation of init method failed; nested exception is org.springframework.beans.factory.NoUniqueBeanDefinitionException: No qualifying bean of type [javax.sql.DataSource] is defined: expected single matching bean but found 2: dataSource,phoenixDataSource
其中「數據源」是使用Spring Batch的管理員,而「phoenixDataSource」是由我創建的。我如何區分兩者,有沒有辦法將@Qualifier提供給BatchAdmin使用過的dataSource。