📄 objectfactorywrapper.java
字号:
/* * $Id: ObjectFactoryWrapper.java 10494 2008-01-23 21:09:56Z acooke $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.config.spring.parsers.specific;import org.mule.config.spring.parsers.assembly.BeanAssembler;import org.mule.config.spring.parsers.generic.ParentDefinitionParser;import org.springframework.beans.factory.config.BeanDefinition;import org.springframework.beans.factory.xml.ParserContext;import org.w3c.dom.Element;/** * Use this BeanDefinitionParser when you need a "wrapper" element for an ObjectFactory. * For example, suppose we have the following class: * * class Car * { * private ObjectFactory<Wheel> wheel; * } * * The following registration in the namespace: * * registerBeanDefinitionParser("wheel", new ObjectFactoryWrapper("wheel")); * * would allow a config such as: * * <car> * <wheel> * <prototype-object class="com.wheelsrus.BigWheel"> * <properties> * <spring:property name="tire" value="goodyear"/> * <spring:property name="diameter" value="35R"/> * </properties> * </prototype-object> * </wheel> * </car> */public class ObjectFactoryWrapper extends ParentDefinitionParser{ public static final String OBJECT_FACTORY_SETTER = "objectFactoryPropertyName"; private String objectFactoryPropertyName; public ObjectFactoryWrapper(String objectFactoryPropertyName) { super(); this.objectFactoryPropertyName = objectFactoryPropertyName; } protected void postProcess(ParserContext context, BeanAssembler assembler, Element element) { super.postProcess(context, assembler, element); BeanDefinition parent = getParentBeanDefinition(element); parent.setAttribute(OBJECT_FACTORY_SETTER, objectFactoryPropertyName); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -