上篇博文对Spring的工作原理做了个大概的介绍,想看的同学请出门左转。今天详细说几点。
(一)Spring IoC容器及其实例化与使用
Spring IoC容器负责Bean的实例化、配置和组装工作有两个接口:BeanFactory和ApplicationContext。其中ApplicationContext继承于BeanFactory,对企业级应用开发提供了更多的支持。在实际应用中都是用该接口。
1)实例化Spring容器(主要有四种)
1.ClassPathXmlApplicationContext: 在类路径下寻找配置XML文件实例化容器。
ApplicationContext act = new ClassPathXmlApplicationContext("hellobean.xml");
2.FileSystemXmlApplicationContext:在文件系统路径下寻找配置文件来实例化容器。
ApplicationContext act=new FileSystemXmlApplicationContext("d:/beans.xml");
3.XmlWebApplicationContext:从Web应用目录WEB-INF中的XML配置文件实例化容器。(小编未能实现成功,请实现成功的同学指教)
WebApplicationContext wctx = new XmlWebApplicationContext();
4.在web.xml配置文件中,通过配置监听器实例化容器。(假定已经配置了Spring的配置文件)
Spring配置文件可指定多个,之间用逗号隔开。
//在网页中通过request对象或其他方式,获取Web服务器容器 ServletContext sc=request.getServletContext(); //利用spring框架提供的静态方法,从Web服务器中获取Spring容器 WebApplicationContext wact=WebApplicationContextUtils.getRequiredWebApplicationContext(sc);
2)生成Bean实例
Spring容器通过getBean()方法,从容器中获取所管理的对象。
例如:
HelloBeans student=(HelloBeans)wctx.getBean("stu1");
(二)基于XML文件方式的Bean配置
在java容器中形成Bean称为装配。
Bean的装配形式有两种:基于XML文件的方式和基于注解的方式。
基于XML文件的方式就是用一个XML文件对Bean信息实施配置。主要有两部分:命名空间、Bean及有关信息的配置。
4种配置Bean的方法:
例子:定义两个实体类
public class Address { private String city; private String school; //无参构造器 public Address(){ this.city="taian"; this.school="nongda"; } //有参构造器 public Address(String city,String school){ this.city=city; this.school=school; } //省略了setter/getter方法 }
public class Student { private String name; private int age; Address address; //默认构造器 public Student(){} //有参构造器 public Address(String name,int age,Address address){ this.name=name; this.age=age; this.address=address; } //省略了setter/getter方法 }
第1种配置方法,利用带参数的构造器注入:
<bean name="a1" class="com.edu.bean.Address"> <constructor-arg index="0" type="java.lang.String" value="北京"/> <constructor-arg index="1" type="java.lang.String" value="清华"/> </bean>
第2种配置方法,利用无参构造器注入:
<bean name="a2" class="com.edu.bean.Address"/>
第3种配置方法,利用属性的setter方法注入:
<bean name="a3" class="com.edu.bean.Address"> <property name="city" value="北京"></property> <property name="school" value="清华"></property> </bean>
第4种配置方法,利用属性的setter方法注入引用属性:
<bean name="addr" class="com.edu.bean.Address"> <property name="city" value="北京"></property> <property name="school" value="清华"></property> </bean> <bean name="ss" class="com.edu.bean.Student"> <property name="name" value="张三"></property> <property name="age" value="20"></property> <property name="address" ref="addr"></property> </bean>
(三)Spring表达式——SpEL(Spring Expression Lanuage)
使用“#{...}”作为定界符。所有在大括号中的字符都将被认为是SpEL。SpEL为Bean的属性动态赋值提供了便利。
以下示例每一组两条语句均为等价表示:
<property name="count" value="#{5}"></property> <property name="count" value="5"></property> <property name="address" value="#{addr}"></property> <property name="address" ref="addr"></property> <property name="address" value="#{addr.city}"></property>
(四)基于注解方式的Bean配置
原文地址:https://www.cnblogs.com/dudududu/p/8476356.html