本文整理汇总了Java中org.springframework.core.env.Environment.acceptsProfiles方法的典型用法代码示例。如果您正苦于以下问题:Java Environment.acceptsProfiles方法的具体用法?Java Environment.acceptsProfiles怎么用?Java Environment.acceptsProfiles使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.springframework.core.env.Environment
的用法示例。
在下文中一共展示了Environment.acceptsProfiles方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: run
import org.springframework.core.env.Environment; //导入方法依赖的package包/类
public void run(Class clazz, String[] args) {
SpringApplication springApplication = new SpringApplication(clazz);
// springApplication.addListeners(new ApplicationPidFileWriter("application.pid"));
ConfigurableApplicationContext ctx = springApplication.run(args);
Environment env = ctx.getEnvironment();
if (env.acceptsProfiles(ProfileConstant.RT_SCRIPT)) {
if (args.length > 0) {
String shellClass = args[0];
ScriptInterface script = (ScriptInterface) ctx.getBean(shellClass);
if (null != script) {
try {
if (args.length > 1) {
script.run(Arrays.copyOfRange(args, 1, args.length));
} else {
script.run(new String[]{});
}
} catch (Exception e) {
scriptLogger.error("error occur", e);
}
}
}
}
}
示例2: DevLambda
import org.springframework.core.env.Environment; //导入方法依赖的package包/类
public DevLambda(Environment env) {
this.dev = env.acceptsProfiles("dev");
}
示例3: getEnvironment
import org.springframework.core.env.Environment; //导入方法依赖的package包/类
protected com.namics.oss.spring.support.configuration.Environment getEnvironment(Environment environment){
if(environment.acceptsProfiles("DEV")){
return new ConfigurationEnvironment("DEV");
}
if(environment.acceptsProfiles("QUAL")){
return new ConfigurationEnvironment("QUAL");
}
if(environment.acceptsProfiles("PROD")){
return new ConfigurationEnvironment("PROD");
}
return new ConfigurationEnvironment("DEV");
}