spring xml bean Spring怎样使用xml创建bean对象
jock_javaEE 人气:0想了解Spring怎样使用xml创建bean对象的相关内容吗,jock_javaEE在本文为您仔细讲解spring xml bean的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:spring,xml,bean,下面大家一起来学习吧。
一、导入JAR包
二、配置applicationContext.xml的spring核心配置
三、
public static void main(String[] args) { //1.使用 ApplicationContext 接口,就是在获取 spring 容器 ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml"); //2.根据 bean 的 id 获取对象 IAccountService aService = (IAccountService) ac.getBean("accountService"); System.out.println(aService); IAccountDao aDao = (IAccountDao) ac.getBean("accountDao"); System.out.println(aDao); }
加载全部内容