Package org.springframework.context.support

Examples of org.springframework.context.support.FileSystemXmlApplicationContext.destroy()


      } else {
        try {
          factory.destroyBean(name, ctx);
        } catch (Exception e) {
          log.warn("Context destroy failed for: {}", name, e);
          ctx.destroy();
        } finally {
          if (factory.containsSingleton(name)) {
            log.debug("Singleton still exists, trying another destroy method");
            ((DefaultListableBeanFactory) factory).destroySingleton(name);
          }
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.