Package org.springframework.web.portlet.context

Examples of org.springframework.web.portlet.context.AbstractRefreshablePortletApplicationContext.refresh()


  @Test
  public void xmlPortletApplicationContext() {
    AbstractRefreshablePortletApplicationContext ctx = new XmlPortletApplicationContext();
    ctx.setEnvironment(prodEnv);
    ctx.setConfigLocation("classpath:" + XML_PATH);
    ctx.refresh();

    assertHasEnvironment(ctx, prodEnv);
    assertEnvironmentBeanRegistered(ctx);
    assertEnvironmentAwareInvoked(ctx, prodEnv);
    assertThat(ctx.containsBean(DEV_BEAN_NAME), is(false));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.