Exemplo n.º 1
0
  public static void main(String[] args) {
    GenericXmlApplicationContext ctx = new GenericXmlApplicationContext();
    ctx.load(new String[] {"classpath:META-INF/spring/app-context-xml.xml"});
    ctx.refresh();

    MessageWriter writer = new MessageWriter();
    writer.writeMessage();
    writer.foo();
  }