attributemapdefinitionparser.java

来自「提供ESB 应用mule源代码 提供ESB 应用mule源代码」· Java 代码 · 共 65 行

JAVA
65
字号
/* * $Id: AttributeMapDefinitionParser.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.collection;import org.mule.config.spring.parsers.generic.ChildDefinitionParser;import org.mule.config.spring.util.SpringXMLUtils;import org.springframework.beans.factory.config.MapFactoryBean;import org.springframework.beans.factory.config.RuntimeBeanReference;import org.springframework.beans.factory.support.BeanDefinitionBuilder;import org.springframework.beans.factory.support.ManagedMap;import org.springframework.beans.factory.xml.ParserContext;import org.w3c.dom.Attr;import org.w3c.dom.Element;import org.w3c.dom.NamedNodeMap;/** * Creates a single, stand-alone map object and processes all attributes to this map */public class AttributeMapDefinitionParser extends ChildDefinitionParser{    public AttributeMapDefinitionParser(String setter)    {        super(setter, ManagedMap.class);    }    protected Class getBeanClass(Element element)    {        return MapFactoryBean.class;    }    protected void parseChild(Element element, ParserContext parserContext, BeanDefinitionBuilder builder)    {        ManagedMap values = new ManagedMap();        NamedNodeMap attributes = element.getAttributes();        for (int x = 0; x < attributes.getLength(); x++)        {            Attr attribute = (Attr) attributes.item(x);            String oldName = SpringXMLUtils.attributeName(attribute);            //TODO How can I use bestGuessName            String name = beanPropertyConfiguration.translateName(oldName);            Object value = beanPropertyConfiguration.translateValue(oldName, attribute.getNodeValue());            if (beanPropertyConfiguration.isReference(oldName))            {                values.put(name, new RuntimeBeanReference(attribute.getNodeValue()));            }            else            {                values.put(name, value);            }        }        builder.addPropertyValue("sourceMap", values);        builder.addPropertyValue("targetMapClass", super.getBeanClass(element));        postProcess(parserContext, getBeanAssembler(element, builder), element);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?