📄 forwardingrouterdefinitionparser.java
字号:
/* * $Id: ForwardingRouterDefinitionParser.java 11447 2008-03-20 12:03:44Z tcarlson $ * -------------------------------------------------------------------------------------- * 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.component.simple.NullComponent;import org.mule.config.spring.parsers.delegate.AbstractSerialDelegatingDefinitionParser;import org.mule.config.spring.parsers.generic.GrandchildDefinitionParser;import org.mule.object.AbstractObjectFactory;import org.mule.object.SingletonObjectFactory;import org.mule.routing.inbound.ForwardingConsumer;import org.springframework.beans.factory.support.BeanDefinitionBuilder;import org.springframework.beans.factory.xml.ParserContext;import org.w3c.dom.Element;/** * In addition to a ForwardingConsumer router, implicitly create a NullComponent service as a placeholder. * * We use AbstractSerialDelegatingDefinitionParser to be able to create 2 beans from a single element. * * We use a ParentDefinitionParser for the NullComponent, because it needs to be set not on * <inbound-router> (the surrounding element), but on <service> (one level up). * * <service name="BridgeOut"> * <inbound-router> * <inbound-endpoint address="tcp://localhost:9994" transformer-ref="NoAction"/> * <forwarding-router/> * </inbound-router> * </service> */public class ForwardingRouterDefinitionParser extends AbstractSerialDelegatingDefinitionParser{ public ForwardingRouterDefinitionParser() { super(); addDelegate(new RouterDefinitionParser(ForwardingConsumer.class)); addDelegate(new NullComponentPlaceholder()); } class NullComponentPlaceholder extends GrandchildDefinitionParser { public NullComponentPlaceholder() { super("componentFactory", SingletonObjectFactory.class); } protected void parseChild(Element element, ParserContext parserContext, BeanDefinitionBuilder builder) { builder.addPropertyValue(AbstractObjectFactory.ATTRIBUTE_OBJECT_CLASS_NAME, NullComponent.class.getName()); super.parseChild(element, parserContext, builder); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -