Package org.springframework.context.support

Examples of org.springframework.context.support.AbstractXmlApplicationContext.afterPropertiesSet()


   *            <code>null</code>, the default context will be loaded instead.
   */
  public static void main(String[] args) {
    AbstractXmlApplicationContext context = createContext(args);
    context.registerShutdownHook();
    context.afterPropertiesSet();
  }

  private static AbstractXmlApplicationContext createContext(String[] args) {
    if (args != null && args.length > 0)
      return createArgumentContext(args);
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.