上一章的实现接口lifeCycle没有删除,然后执行这一章的Test也会有出现初始化和销毁的log,是不是只要引用了xml文件,就会开始初始化xml文件中所有的bean。
2017-05-23
我来说一句啊。这个主要是没有在实际用途上用,所以会感到迷茫。我android的,没学过jsp servlet 后面的看得也是一脸懵逼,但是我觉得先网后面看,后面出现例子的时候再往回翻看就可以更加深的印象了。一脸懵逼不要紧,最主要是要有坚持下去的心。这里可能看不太懂,没关系,先放着,没不要死磕到底。毕竟新手,没有上手你就想各种飞。不可能,这些基础知识都是要在真实项目里才能体现的。
2017-05-23
不用UnitTestBase类的简单的获得bean的方法: ApplicationContext context = new FileSystemXmlApplicationContext("classpath*:spring-ioc.xml");//xml路径获得上下文
OneInterface oneInterface = (OneInterface) context.getBean("oneInterface");//从上下文中获得bean赋予oneinterface
System.out.println(oneInterface.hello("nimahai"));
OneInterface oneInterface = (OneInterface) context.getBean("oneInterface");//从上下文中获得bean赋予oneinterface
System.out.println(oneInterface.hello("nimahai"));
2017-05-21