BeanDefinition 元信息
BeanDefinition 元信息一览
其中一些特别说明:
Name
Bean 的名称或者ID, 也有其它称谓如 Bean的识别符,
Scope
Bean 的作用域(如:singleton、prototype 等), 默认是singleton也就是单例模式
Constructor
arguments Bean 构造器参数(用于依赖注入), 正常 POJO类 是有默认构造器的, 这种比较简单.
但如果是引用一些jar中的类, 没有默认构造器, 就需要用这个来帮我们初始化类.
Properties
Bean 属性设置(用于依赖注入), 就是参数注入(Setter注入)
Autowiring mode
Bean 自动绑定模式(如:通过名称byName)
Lazy initialization mode
Bean 延迟初始化模式(延迟和非延迟), 延迟初始化可以有效的减少容器启动的时间
Initialization method
Bean 初始化回调方法名称
Destruction method
Bean 销毁回调方法名称
BeanDefinition 构建
• 通过BeanDefinitionBuilder
• 通过AbstractBeanDefinition 以及派生类
代码示例
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.geekbang.thinking.in.spring.bean.definition;
import org.geekbang.thinking.in.spring.ioc.overview.domain.User;
import org.springframework.beans.MutablePropertyValues;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.support.GenericBeanDefinition;
/**
* 32 | BeanDefinition元信息:除了Bean名称和类名,还有哪些Bean元信息值得关注?
* 两种获取 BeanDefinition 实例的方法:
* 1. 通过 BeanDefinitionBuilder 构建
* 2. 通过 AbstractBeanDefinition 以及派生类
*
* {@link org.springframework.beans.factory.config.BeanDefinition} 构建示例
*
* @author <a href="mailto:mercyblitz@gmail.com">Mercy</a>
* @since
*/
public class BeanDefinitionCreationDemo {
public static void main(String[] args) {
// 32.1 通过 BeanDefinitionBuilder 构建
// BeanDefinitionBuilder是一个 final 类, 同时包含很多静态方法, 可以帮助我们去初始化BeanDefinitionBuilder
// 比如, 添加一个构造参数的值, 可以用 addConstructorArgValue
// 如果需要将构造函数中的参数用一个Bean的方式去引用, 可以用 addConstructorArgReference
// 如果用 rootBeanDefinition 初始化 BeanDefinitionBuilder, 创建的基本就是祖类
BeanDefinitionBuilder beanDefinitionBuilder = BeanDefinitionBuilder.genericBeanDefinition(User.class);
// 通过属性设置
beanDefinitionBuilder
.addPropertyValue("id", 1)
.addPropertyValue("name", "小马哥");
// 获取 BeanDefinition 实例
// 里面有常用的 BeanDefinition 元信息
BeanDefinition beanDefinition = beanDefinitionBuilder.getBeanDefinition();
// BeanDefinition 并非 Bean 终态,可以自定义修改
beanDefinition.setDependsOn("xxxx");
// beanDefinitionBuilder.getBeanDefinition() 返回的其实是一个抽象类 AbstractBeanDefinition
// 而 BeanDefinition 是个接口,
// 另外注意在以往的版本中呢, BeanDefinition 是不能进行set操作的, 后来更新的版本则对此进行了补充
// 32.2 通过 AbstractBeanDefinition 以及派生类, 这里可以参考 BeanDefinitionBuilder 的构造器方法来找派生类
// GenericBeanDefinition是 AbstractBeanDefinition 的子类
GenericBeanDefinition genericBeanDefinition = new GenericBeanDefinition();
// 设置 Bean 类型
genericBeanDefinition.setBeanClass(User.class);
// 通过 MutablePropertyValues 批量操作属性, genericBeanDefinition 没有 addPropertyValue()
MutablePropertyValues propertyValues = new MutablePropertyValues();
// MutablePropertyValues有两种操作属性的方式:
//propertyValues.addPropertyValue("id", 1);
//propertyValues.addPropertyValue("name", "小马哥");
propertyValues
.add("id", 1)
.add("name", "小马哥");
// 通过 set MutablePropertyValues 批量操作属性
genericBeanDefinition.setPropertyValues(propertyValues);
}
}