我有时可能不需要在启动时根据通过jvm参数传递的值来构造bean
我尝试了@Conditional注释但它只适用于@Bean注释.
你试过吗,以前需要这样的东西吗?
最佳答案
AFAIK Conditional不能与postconstruct混合使用.所以我的建议
原文链接:https://www.f2er.com/spring/432141.html>使用postconstruct添加两个不同的bean,在beans声明中添加一个不使用@Conditional
>添加有效的应用程序代码的程序代码:
import org.springframework.core.env.Environment;
private final Environment env;
public void execute() {
if (env.getProperty("condition") == "condition") {
}
}
>在1中使用aproximation但@Profile并将活动配置文件作为参数-Dspring.profiles.active = my_profile传递