Spring的IOC模拟实现(3)

public class Ioc { public static void main(String[] args) { ClassPathXmlApplicationContext applicationContext=new ClassPathXmlApplicationContext("src/bean.xml"); IocDaoService ids=(IocDaoService)applicationContext.getBean("iocService"); ids.sayhello(); } }

九.显示结果:

Spring的IOC模拟实现

到这里Ioc的模拟就结束了.

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/78cf0d308323bbdf7dfafbab41408237.html