Package org.springframework.context.support

Examples of org.springframework.context.support.GenericGroovyApplicationContext.load()


    assertEquals("SpringSource", company);
  }

  public void testLoadingMultipleConfigFilesWithRelativeClass() {
    GenericGroovyApplicationContext ctx = new GenericGroovyApplicationContext();
    ctx.load(GroovyApplicationContextTests.class, "applicationContext2.groovy", "applicationContext.groovy");
    ctx.refresh();

    Object framework = ctx.getBean("framework");
    assertNotNull("could not find framework bean", framework);
    assertEquals("Grails", framework);
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.