1516171819202122
public static void main(String[] args) { ApplicationContext ctx = new FileSystemXmlApplicationContext( "./ch5/src/conf/appContext/lazy.xml"); DestructiveBeanWithInterface bean = (DestructiveBeanWithInterface) ctx .getBean("destructiveBean"); }
20212223242526
"./ch5/src/conf/interaction/shutdownHook.xml")); // make sure the shutdown hook is created factory.preInstantiateSingletons(); DestructiveBeanWithInterface bean = (DestructiveBeanWithInterface) factory.getBean("destructiveBean"); }