本文整理匯總了Java中org.springframework.web.context.support.AnnotationConfigWebApplicationContext.setEnvironment方法的典型用法代碼示例。如果您正苦於以下問題:Java AnnotationConfigWebApplicationContext.setEnvironment方法的具體用法?Java AnnotationConfigWebApplicationContext.setEnvironment怎麽用?Java AnnotationConfigWebApplicationContext.setEnvironment使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.springframework.web.context.support.AnnotationConfigWebApplicationContext
的用法示例。
在下文中一共展示了AnnotationConfigWebApplicationContext.setEnvironment方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: applicationContext
import org.springframework.web.context.support.AnnotationConfigWebApplicationContext; //導入方法依賴的package包/類
protected WebApplicationContext applicationContext() {
if (applicationContext == null) {
AnnotationConfigWebApplicationContext webApplicationContext = new AnnotationConfigWebApplicationContext();
Set<Class<?>> annotatedClasses = annotatedClasses();
if (annotatedClasses != null) {
annotatedClasses.iterator().forEachRemaining(webApplicationContext::register);
}
Set<? extends BeanFactoryPostProcessor> beanFactoryPostProcessors = beanFactoryPostProcessors();
if (beanFactoryPostProcessors != null) {
beanFactoryPostProcessors.iterator().forEachRemaining(webApplicationContext::addBeanFactoryPostProcessor);
}
if (this.rootApplicationContext != null) {
webApplicationContext.setParent(this.rootApplicationContext);
webApplicationContext.setEnvironment((ConfigurableEnvironment) rootApplicationContext.getEnvironment());
}
applicationContext = webApplicationContext;
}
return (WebApplicationContext) applicationContext;
}
示例2: testCustomShellProperties
import org.springframework.web.context.support.AnnotationConfigWebApplicationContext; //導入方法依賴的package包/類
@Test
public void testCustomShellProperties() throws Exception {
MockEnvironment env = new MockEnvironment();
env.setProperty("management.shell.auth.type", "simple");
AnnotationConfigWebApplicationContext ctx = new AnnotationConfigWebApplicationContext();
ctx.setEnvironment(env);
ctx.setServletContext(new MockServletContext());
ctx.register(TestShellConfiguration.class);
ctx.register(CrshAutoConfiguration.class);
ctx.refresh();
PluginLifeCycle lifeCycle = ctx.getBean(PluginLifeCycle.class);
String uuid = lifeCycle.getConfig().getProperty("test.uuid");
assertThat(uuid).isEqualTo(TestShellConfiguration.uuid);
ctx.close();
}
開發者ID:vikrammane23,項目名稱:https-github.com-g0t4-jenkins2-course-spring-boot,代碼行數:17,代碼來源:ShellPropertiesTests.java
示例3: annotationConfigWebApplicationContext
import org.springframework.web.context.support.AnnotationConfigWebApplicationContext; //導入方法依賴的package包/類
@Test
public void annotationConfigWebApplicationContext() {
AnnotationConfigWebApplicationContext ctx = new AnnotationConfigWebApplicationContext();
ctx.setEnvironment(prodWebEnv);
ctx.setConfigLocation(EnvironmentAwareBean.class.getName());
ctx.refresh();
assertHasEnvironment(ctx, prodWebEnv);
assertEnvironmentBeanRegistered(ctx);
assertEnvironmentAwareInvoked(ctx, prodWebEnv);
}