Spring基于xml文件配置Bean过程详解
这篇文章主要介绍了spring基于xml文件配置Bean过程详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
通过全类名来配置:
class:bean的全类名,通过反射的方式在IOC容器中创建Bean,所以要求bean中必须有一个无参的构造器。
在springIOC容器读取Bean配置创建Bean的实例之前,需要对容器进行实例化。spring提供了两种类型的IOC容器实现:
Beanfactory:IOC容器的基本实现。
ApplicationContext:提供了更多高级特性,是BeanFactory的子接口。
ApplicationContext主要实现类:
- ClassPathXmlApplicationContext:从类路径加载配置文件。
- FileSystemXmlApplicationContext:从文件系统中加载配置文件。
- ConfigureableApplicationContext扩展于ApplicationContext,新增两个方法refresh()和close(),让ApplicationContext具有启动、刷新和关闭上下文的能力。
ApplicaiotnContex在初始化时就上下文时就实例化所有单例的Bean。
WebApplicationContext是专门用于WEB应用的,它允许从相对于WEB根目录的路径中完成初始化工作。
依赖注入的三种方式
(1)属性注入:通过setter方法:
(2)构造器注入:
(3)工厂方法注入(很少使用,不推荐)
//第一种方式注入属性值 //第二种方式注入属性值 99.00
packagecom.gong.spring.beans; publicclassStudent{ privateStringname; privateintage; privatedoublescore; publicStudent(Stringname,intage,doublescore){ this.name=name; this.age=age; this.score=score; } @Override publicStringtoString(){ return"Student[name="+name+",age="+age+",score="+score+"]"; } }
publicstaticvoidmain(String[]args){ //1.创建spring的IOC容器对象 ApplicationContextctx=newClassPathXmlApplicationContext("applicationContext.xml"); //2.从容器中获取Bean实例 Studentstudent=(Student)ctx.getBean("student"); System.out.println(student.toString()); }
输出:
当属性值有特殊符号时,要用以下方式:
]]>
用。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。