Package org.springframework.web.portlet.context

Examples of org.springframework.web.portlet.context.AbstractRefreshablePortletApplicationContext


    assertEnvironmentAwareInvoked(ctx, prodEnv);
  }

  @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));
    assertThat(ctx.containsBean(PROD_BEAN_NAME), is(true));
  }
View Full Code Here

TOP

Related Classes of org.springframework.web.portlet.context.AbstractRefreshablePortletApplicationContext

Copyright © 2018 www.massapicom. 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.