赞
踩
前言:
Spring容器创建bean对象,一般通过反射机制查找bean元素的class属性值来找到要实例化的类,从而实例化bean对象。这便是调用构造方法来实例化bean对象
在某些情况下,若采用简单的xml配置文件方式,比如写大量的bean元素,会大大增加工作量。Spring容器还添加了一些bean元素的属性来减少配置文件的编写工作量。比如,静态工厂方法(factory-method属性)、实例化工厂方法(factory-bean属性、factory-method属性)
此外,Spring还提供了FactoryBean接口来支持开发人员自定义实例化bean对象的方式
案例源码:码云仓库的base-003子项目
解释:
基本格式:
<bean id="bean名称" name="bean名称或者别名" class="完整类路径">
<constructor-arg index="0" value="bean的值" ref="引用的bean名称" />
<constructor-arg index="1" value="bean的值" ref="引用的bean名称" />
....
</bean>
不指定constructor-arg
,则Spring容器会调用默认无参构造方法
来创建bean对象;若指定constructor-arg
,则调用有参构造方法
来创建bean对象指定constructor-arg
,index要和实体类的属性一一对应,不可缺少
案例
实体类
package com.spring.study; public class Dog { private String name; private int age; public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public Dog() { this.name = "小白"; this.age = 1; } public Dog(String name, int age) { this.name = name; this.age = age; } }
配置文件
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- 默认调用无参构造方法创建bean对象-->
<bean id="dog1" class="com.spring.study.Dog"/>
<!-- 调用有参构造方法创建bean对象-->
<bean id="dog2" class="com.spring.study.Dog">
<constructor-arg index="0" value="大黄"/>
<constructor-arg index="1" value="2"/>
</bean>
</beans>
测试类
package com.spring.test; import com.spring.study.Dog; import org.springframework.context.support.ClassPathXmlApplicationContext; public class TestConstructor { public static void main(String[] args) { // 1、定义bean配置文件位置 String classPathXml = "classpath:applicationContext.xml"; // 2、创建ClassPathXmlApplicationContext容器,给容器指定需要加载的bean配置文件 ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(classPathXml); // 3、获取容器中所有bean对象 //获取所有bean对象的bean名称 String[] beanNames = context.getBeanDefinitionNames(); //打印输出bean对象 for (String beanName : beanNames){
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。