命名Bean
- 每个 bean 具有一个或多个标识符。这些标识符在承载 Bean 的容器内必须唯一。
- id和name指定bean的标识符,必须唯一
- 命名规则:驼峰式一般采用简单的类名称并将其初始字符转换为小写
- 别名:name是在实际定义bean的地方指定别名,
- 每个子系统都有自己的对象定义集。在基于 XML 的配置元数据中,可以使用元素来完成此操作。
- @Bean()也可以定义别名
实例化Bean
Bean 定义本质上是创建一个或多个对象的方法。容器查看命名 bean 的配方,并使用该 bean 定义封装的配置元数据来创建(或获取)实际对象。
构造函数实例化
容器本身通过反射调用Class的构造函数直接创建 Bean,相当于new
set方法注入
这种方式需要存在无参构造以及set方法,因为实际是使用无参构造器,后利用set方法属性注入
<bean id="entity" class="com.jas.pojo.Entity">
<property name="name" value="小明"/>
</bean>
有参构造
有参构造只需要有参构造器
<bean id="entity" class="com.jas.pojo.Entity">
<constructor-arg name="name" value="小明"/>
</bean>
工厂实例化 factory-method
分为静态工厂方法和实例工厂方法。
private static Entity entity=new Entity();
public static Entity newEntity(){
return entity;
}
<bean id="entity" class="com.jas.pojo.Entity" factory-method="newEntity">
<property name="name" value="小明"/>
</bean>
元素注入
- 常量注入value
- Bean注入ref
- 数组,List,set注入
<property name="array">
<array/list/set>
<value>Element1</value>
<value>Element2</value>
<value>Element3</value>
<array/list/set>
</property>
Map注入
<property name="map">
<map>
<entry key="key1" value="value1">
<entry key="key2" value="value2">
<entry key="key2" value="value2">
</map>
</property>
- Null注入
<property name="nulll"><null/></property>
p(property)命名空间
导入约束 : xmlns:p="http://www.springframework.org/schema/p"
<bean id="entity" class="com.jas.pojo.Entity" p:name="小明"/>
c(Constructor)命名空间
导入约束 : xmlns:c="http://www.springframework.org/schema/c"
<bean id="entity" class="com.jas.pojo.Entity" c:name="小明"/>
Bean作用域
默认——singleton:Spring容器中仅存一个Bean实例,即单例模式,getBean从容器中取出的对象也为同一对象
<bean id="entity" class="com.jas.pojo.Entity" scope="singleton">
<property name="name" value="小明"/>
</bean>
@Test
public static void Test(){
ApplicationContext context =new ClassPathXmlApplicationContext("applicationContext.xml");
Entity entity1 = context.getBean("entity", Entity.class);
Entity entity2 = context.getBean("entity", Entity.class);
System.out.println(entity1==entity2);
}
//output:true
- prototype:getBean从容器中返回一个新实例
<bean id="entity" class="com.jas.pojo.Entity" scope="prototype">
<property name="name" value="小明"/>
</bean>
@Test
public static void Test(){
ApplicationContext context =new ClassPathXmlApplicationContext("applicationContext.xml");
Entity entity1 = context.getBean("entity", Entity.class);
Entity entity2 = context.getBean("entity", Entity.class);
System.out.println(entity1==entity2);
}
//output:false
- Request:在一次HTTP请求中,一个bean定义对应一个实例;该作用域仅在基于web的Spring ApplicationContext情形下有效。
- Session:表示在一个HTTP Session中,一个bean定义对应一个实例。该作用域仅在基于web的Spring ApplicationContext情形下有效。