一站式轻量级框架 Spring (2)

创建一个 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(); } }

文章作者:彭超

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

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