您的位置 首页 java

「死磕 Spring」—IOC 之解析 bean 标签:meta、lookup-method

在上篇博客【死磕Spring】—– IOC 之解析 Bean 标签:BeanDefinition中已经完成了对 Bean 标签属性的解析工作,这篇博文开始分析子元素的解析。完成 Bean 标签基本属性解析后,会依次调用 parse meta Elements()、parseLookupOverrideSubElements()、parseReplacedMethodSubElements() 对子元素 meta、lookup-method、replace-method 完成解析。三个子元素的作用如下:

  • meta: 元数据
  • lookup-method:Spring 动态改变 bean 里方法的实现。方法执行返回的对象,使用 Spring 内原有的这类对象替换,通过改变方法返回值来动态改变方法。内部实现为使用 cglib 方法,重新生成子类,重写配置的方法和返回对象,达到动态改变的效果。
  • replace-method:Spring 动态改变 bean 里方法的实现。需要改变的方法,使用 Spring 内原有其他类(需要继承接口org.springframework.beans.factory.support.MethodReplacer)的逻辑,替换这个方法。通过改变方法执行逻辑来动态改变方法。

meta 子元素

meta :元数据。当需要使用里面的信息时可以通过key获取

meta 所声明的 key 并不会在 Bean 中体现,只是一个额外的声明,当我们需要使用里面的信息时,通过 BeanDefinition 的 getAttribute() 获取。该子元素的解析过程如下:

解析过程较为简单,获取相应的 key – value 构建 BeanMetadataAttribute 对象,然后通过 addMetadataAttribute() 加入到 AbstractBeanDefinition 中。 “ 如下:

 public void addMetadataAttribute(BeanMetadataAttribute attribute) {
 super.setAttribute(attribute.getName(), attribute);
 }
 

委托 AttributeAccessorSupport 实现,如下:

 public void setAttribute(String name, @Nullable Object value) {
 Assert.notNull(name, "Name must not be null");
 if (value != null) {
 this.attributes.put(name, value);
 }
 else {
 removeAttribute(name);
 }
 }
 

AttributeAccessorSupport 是接口 AttributeAccessor 的实现者。 AttributeAccessor 接口定义了与其他对象的元数据进行连接和访问的约定,可以通过该接口对属性进行获取、设置、删除操作。 设置元数据后,则可以通过 getAttribute() 获取,如下:

 public Object getAttribute(String name) {
 BeanMetadataAttribute attribute = (BeanMetadataAttribute) super.getAttribute(name);
 return (attribute != null ? attribute.getValue() : null);
 }
 

lookup-method 子元素

lookup-method :获取器注入,是把一个方法声明为返回某种类型的 bean 但实际要返回的 bean 是在配置文件里面配置的。该方法可以用于设计一些可插拔的功能上,解除程序依赖。

直接上例子:

配置内容如下:

 <bean id="display" class="org.springframework.core.test1.Display">
 <lookup-method name="getCar" bean="hongqi"/>
 </bean>
 

运行结果为:

我是 hongqi
 

如果将 bean=”hognqi” 替换为 bean=”bmw”,则运行结果变成:

我是 BMW
 

看了这个示例,我们初步了解了 looku-method 子元素提供的功能了,其解析过程如下:

解析过程和 meta 子元素没有多大区别,同样是解析 methodName、beanRef 构造一个 LookupOverride 对象,然后覆盖即可。在 实例化 Bean 的时候,再详细阐述具体的实现过程,这里仅仅只是一个标记作用。

replace-method 子元素

replaced-method :可以在运行时调用新的方法替换现有的方法,还能动态的更新原有方法的逻辑

该标签使用方法和 lookup-method 标签差不多,只不过替代方法的类需要实现 MethodReplacer 接口。如下:

如果 spring.xml 文件如下:

 <bean id="methodReplace" class="org.springframework.core.test1.MethodReplace"/>
 <bean id="method" class="org.springframework.core.test1.Method"/>
 

则运行结果为:

我是原始方法
 

增加 replaced-method 子元素:

 <bean id="methodReplace" class="org.springframework.core.test1.MethodReplace"/>
 <bean id="method" class="org.springframework.core.test1.Method">
 <replaced-method name="display" replacer="methodReplace"/>
 </bean>
 

运行结果为:

我是替换方法
 

上面代码演示了 replaced-method 子元素的用法,下面再看看该子元素的解析过程。

该子元素和 lookup-method 资源的解析过程差不多,同样是提取 name 和 replacer 属性构建 ReplaceOverride 对象,然后记录到 AbstractBeanDefinition 中的 methodOverrides 属性中。 对于 lookup-method 和 replaced-method 两个子元素是如何使用以完成他们所提供的功能,在后续实例化 Bean 的时候会做详细说明。

文章来源:智云一二三科技

文章标题:「死磕 Spring」—IOC 之解析 bean 标签:meta、lookup-method

文章地址:https://www.zhihuclub.com/193241.shtml

关于作者: 智云科技

热门文章

网站地图