Answers:
扩展User1648825的简单答案(我无法发表评论,我的编辑被拒绝了):
@Value("${spring.profiles.active}")
private String activeProfile;
如果未设置任何配置文件,则可能抛出IllegalArgumentException(我得到一个空值)。如果您需要设置它,这可能是一件好事。如果不对@Value使用'default'语法,即:
@Value("${spring.profiles.active:Unknown}")
private String activeProfile;
如果无法解析spring.profiles.active,则... activeProfile现在包含'未知'
这是一个更完整的示例。
汽车线环境
首先,您将要自动连接环境bean。
@Autowired
private Environment environment;
检查活动配置文件中是否存在配置文件
然后,您可以使用getActiveProfiles()
查找配置文件是否存在于活动配置文件列表中。这是一个示例,它使用String[]
from getActiveProfiles()
,从该数组获取一个流,然后使用匹配器检查多个配置文件(不区分大小写),如果存在则返回一个布尔值。
//Check if Active profiles contains "local" or "test"
if(Arrays.stream(environment.getActiveProfiles()).anyMatch(
env -> (env.equalsIgnoreCase("test")
|| env.equalsIgnoreCase("local")) ))
{
doSomethingForLocalOrTest();
}
//Check if Active profiles contains "prod"
else if(Arrays.stream(environment.getActiveProfiles()).anyMatch(
env -> (env.equalsIgnoreCase("prod")) ))
{
doSomethingForProd();
}
您还可以使用注释实现类似的功能。@Profile("local")
配置文件允许根据传入的或环境参数进行选择性配置。这是有关此技术的更多信息:Spring Profiles
@Value("${spring.profiles.active}")
private String activeProfile;
它可以工作,您不需要实现EnvironmentAware。但是我不知道这种方法的缺点。
Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'spring.profiles.active' in value "${spring.profiles.active}"
@Profile
。应用程序还可以使用该spring.profiles.include
属性,并且可以在初始化期间使用来以编程方式设置配置文件ConfigurableEnvironment
。Environment.getActiveProfiles()
将使用这些机制中的任何一种获取配置文件集的完整列表。
似乎存在一些能够静态访问此请求的需求。
如何在非Spring管理的类的静态方法中获得此类信息?–以太
这是一个hack,但是您可以编写自己的类来公开它。您必须小心确保SpringContext.getEnvironment()
在创建所有bean之前不会调用任何东西,因为不能保证何时实例化此组件。
@Component
public class SpringContext
{
private static Environment environment;
public SpringContext(Environment environment) {
SpringContext.environment = environment;
}
public static Environment getEnvironment() {
if (environment == null) {
throw new RuntimeException("Environment has not been set yet");
}
return environment;
}
}