springxmlutils.java
来自「提供ESB 应用mule源代码 提供ESB 应用mule源代码」· Java 代码 · 共 72 行
JAVA
72 行
/* * $Id: SpringXMLUtils.java 10256 2008-01-08 15:20:25Z dfeist $ * -------------------------------------------------------------------------------------- * 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.util;import org.mule.config.spring.parsers.AbstractMuleBeanDefinitionParser;import org.mule.util.StringUtils;import org.mule.util.XMLUtils;import org.apache.commons.logging.Log;import org.apache.commons.logging.LogFactory;import org.springframework.beans.factory.xml.BeanDefinitionParserDelegate;import org.w3c.dom.Element;/** * These only depend on standard (JSE) XML classes and are used by Spring config code. * For a more extensive (sub-)class, see the XMLUtils class in the XML module. */public class SpringXMLUtils extends XMLUtils{ private static final Log logger = LogFactory.getLog(SpringXMLUtils.class); public static final String MULE_DEFAULT_NAMESPACE = "http://www.mulesource.org/schema/mule/core"; public static final String MULE_NAMESPACE_PREFIX = "http://www.mulesource.org/schema/mule/"; public static boolean isMuleNamespace(Element element) { String ns = element.getNamespaceURI(); return ns != null && ns.startsWith(MULE_NAMESPACE_PREFIX); } public static boolean isBeansNamespace(Element element) { String ns = element.getNamespaceURI(); return ns != null && ns.equals(BeanDefinitionParserDelegate.BEANS_NAMESPACE_URI); } public static String getNameOrId(Element element) { String id = element.getAttribute(AbstractMuleBeanDefinitionParser.ATTRIBUTE_ID); String name = element.getAttribute(AbstractMuleBeanDefinitionParser.ATTRIBUTE_NAME); if (StringUtils.isBlank(id)) { if (StringUtils.isBlank(name)) { return ""; } else { return name; } } else { if (!StringUtils.isBlank(name) && !name.equals(id)) { logger.warn("Id (" + id + ") and name (" + name + ") differ for " + elementToString(element)); } return id; } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?