Spring工厂类

    /**
     * 读取磁盘上的配置文件
     */
    @Test
    public void demo3(){
        ApplicationContext applicationContext = new FileSystemXmlApplicationContext("c:\\applicationContext.xml");
        UserService userService = (UserService) applicationContext.getBean("userService");
        userService.sayHello();
    }

  

原始的工厂类BeanFactory

现在的工厂类ApplicationContext

 

posted @ 2019-08-18 20:34  鸿森  阅读(153)  评论(0编辑  收藏  举报