gpt4 book ai didi

java - 用两种可能的实现定义 bean

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:32:00 26 4
gpt4 key购买 nike

到目前为止,我有一个非常简单的 bean 定义,如下所示:

@Bean
@Conditional(value=ConditionClass.class)
SomeInterface myMethodImpl(){
return new ImplementationOne();
}

但是,我现在遇到的情况是添加了额外的实现类,我们称它为 ImplementationTwo,当在配置文件。

所以我需要的是这样的:

@Bean
@Conditional(value=ConditionClass.class)
SomeInterface myMethodImpl(){
return context.getEnvironment().getProperty("optionEnabled") ? new
ImplementationOne() : new ImplementationTwo();
}

基本上是一种在 bean 定义时根据配置值实例化正确实现的方法。这可能吗,任何人都可以提供一个例子吗?谢谢

最佳答案

无需使用 @Conditional 即可实现。

假设您有一个接口(interface) SomeInterface 和两个实现 ImplOne ImplTwo:

SomeInterface.java

public interface SomeInterface {
void someMethod();
}

ImplOne.java

public class ImplOne implements SomeInterface{
@Override
public void someMethod() {
// do something
}
}

ImplTwo.java

public class ImplTwo implements SomeInterface{
@Override
public void someMethod() {
// do something else
}
}

然后你可以像这样在配置类中控制使用哪个实现:

MyConfig.java

@Configuration
public class MyConfig {

@Autowired
private ApplicationContext context;

@Bean
public SomeInterface someInterface() {
if (this.context.getEnvironment().getProperty("implementation") != null) {
return new ImplementationOne();
} else {
return new ImplementationTwo();
}
}
}

确保spring的组件扫描找到MyConfig。然后,您可以使用 @Autowired 将正确的实现注入(inject)代码中的其他任何位置。

关于java - 用两种可能的实现定义 bean,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52949694/

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