创建一个 IoCTest 测试类,测试对象是否能够通过 Spring 来创建,代码如下:
public class IoCTest { public static void main(String[] args) { // 获取 Spring 容器 ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-context.xml"); // 从 Spring 容器中获取对象 HelloSpringService helloSpringService = (HelloSpringService) applicationContext.getBean("HelloSpringService"); HelloSpringService.helloSpring(); } }文章作者:彭超