gpt4 book ai didi

java - Spring-Boot 忽略@Qualifier 注解

转载 作者:搜寻专家 更新时间:2023-10-31 20:09:12 24 4
gpt4 key购买 nike

我正在将一个活跃的 Spring web 应用程序迁移到 spring boot(1.4.2)。

bean 在使用 @ImportResource 加载时在 XML 中定义。

我开始的 4 个 bean 是同一对象 BasicDataSource 的一个实例。

为了告诉 spring 要加载哪一个,我为每个设置了一个 ID,并使用 @Qualifier 将正确的 bean 绑定(bind)到变量。

但似乎 Spring 忽略了我的 @Qualifier 并抛出“没有可用的 'javax.sql.DataSource' 类型的限定 bean:预期的单个匹配 bean 但找到 4:DataSource1、DataSource2、DataSource3、DataSource4”

P.S - 请注意,具有@Qualifier 的类是一个抽象类,未能实例化的类是一个扩展类,但是@Qualifier 具有@Inherited。

XML

<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"
xmlns:jee="http://www.springframework.org/schema/jee" xmlns:task="http://www.springframework.org/schema/task"
xmlns:cache="http://www.springframework.org/schema/cache"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/jee
http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-3.2.xsd
http://www.springframework.org/schema/cache
http://www.springframework.org/schema/cache/spring-cache-3.2.xsd
http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring
http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring/ehcache-spring-1.1.xsd">

<context:load-time-weaver aspectj-weaving="on"/>
<cache:annotation-driven mode="aspectj"/>
<context:property-override location="file:/app/config/dataSourceOverride.cfg"/>
<context:annotation-config />

<bean id="DataSource1" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="userId" value="4" />
</bean>

<bean id="DataSource2" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="userId" value="3" />
</bean>

<bean id="DataSource3" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="userId" value="2" />
</bean>

<bean id="DataSource4" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="userId" value="1" />
</bean>

Spring Boot 应用程序主体

package com.app;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.ImportResource;


@SpringBootApplication
@EnableAutoConfiguration
@ComponentScan("com.app")
@ImportResource("com/app/startup/spring.xml")
public class SpringBootServer {

public static void main(String[] args) {
SpringApplication.run(SpringBootServer.class, args);

}
}

抽象类

public abstract class GenericDao {

public GenericDao() {

}

private Logger logger = LoggerFactory.getLogger(GenericDao.class);

@Autowired
@Qualifier("DataSource1")
protected BasicDataSource dataSource1Impl;

@Autowired
@Qualifier("DataSource2")
protected BasicDataSource dataSource2Impl;

@Autowired
@Qualifier("DataSource3")
protected BasicDataSource dataSource3Impl;

@Autowired
@Qualifier("DataSource4")
protected BasicDataSource dataSource4Impl;
}

固体钙

@Component("widgetsDao")
public class WidgetsDao extends GenericDao {

##Some methods##

}

异常

***************************
APPLICATION FAILED TO START
***************************

Description:

Field dataSource1Impl in com.app.dal.GenericDao required a single bean, but 4 were found:
- DataSource1: defined in class path resource [com/app/startup/app-spring.xml]
- DataSource2: defined in class path resource [com/app/startup/app-spring.xml]
- DataSource3: defined in class path resource [com/app/startup/app-spring.xml]
- DataSource4: defined in class path resource [com/app/startup/app-spring.xml]


Action:

Consider marking one of the beans as @Primary, updating the consumer to accept multiple beans, or using @Qualifier to identify the bean that should be consumed

什么可能使 spring 忽略我的 @Qualifier 注解?

提前致谢。

最佳答案

我在使用多个数据源时看到了同样的错误,在将其中一个数据源 bean 设为“主要”bean 之后,问题似乎得到了解决,然后我能够使用 @Qualifier 注释 Autowiring 正确的 bean。

Spring Boot 文档 here同意这一点,说当使用多个数据源时,其中一个数据源bean必须是主要的。

我在 Java 中使用@Bean 注释配置了我的 beans,因此我使用了@Primary 注释来创建一个主要的。但是,如果您在 XML 中配置,看起来 XML 中的元素确实有一个可选的“主要”属性,如果在 XML 中配置 bean,则可以使用该属性。

关于java - Spring-Boot 忽略@Qualifier 注解,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41227053/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com