spring – 条件后构造注释

前端之家收集整理的这篇文章主要介绍了spring – 条件后构造注释前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有时可能不需要在启动时根据通过jvm参数传递的值来构造bean

我尝试了@Conditional注释但它只适用于@Bean注释.

你试过吗,以前需要这样的东西吗?

最佳答案
AFAIK Conditional不能与postconstruct混合使用.所以我的建议

>使用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传递

原文链接:https://www.f2er.com/spring/432141.html

猜你在找的Spring相关文章