• 2022-06-07
    对下面使用Spring依赖注入的代码,下面说法错误的有ApplicationContext context = new ClassPathXmlApplicationContext("chinasofti.xml");Printer printer = (Printer)context.getBean("printer");
    A: 配置文件chinasofti.xml位于项目类检索目录下
    B: 在chinasofti.xml中定义了一个id或name为printer的bean
    C: context.getBean()返回的是printer类型的对象,不需要强制转换类型
    D: chinasofti.xml被修改后,context会自动重新加载