在测试环境中部署 Mule 应用程序时出现异常
Getting exception while deploying Mule app in test environment
我正在测试环境中部署我的应用程序,但出现以下异常 -
org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Ignored XML validation warning build 09-Jul-2018 08:30:36 org.xml.sax.SAXParseException: schema_reference.4: Failed to read schema document 'http://www.mulesoft.org/schema/mule/schemadoc/3.9/mule-schemadoc.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>
我无法理解为什么会出现此错误。请帮帮我
通常这些错误是由于您的 pom.xml 中没有正确的依赖项(假设您是 运行 Mavenized 项目)导致的,这可能是由于 copying/pasting raw XML 代码,等等。
尝试从调色板中删除您要使用的组件,然后重新添加它。这应该会自动将依赖项添加到您的 pom.xml.
我正在测试环境中部署我的应用程序,但出现以下异常 -
org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Ignored XML validation warning build 09-Jul-2018 08:30:36 org.xml.sax.SAXParseException: schema_reference.4: Failed to read schema document 'http://www.mulesoft.org/schema/mule/schemadoc/3.9/mule-schemadoc.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>
我无法理解为什么会出现此错误。请帮帮我
通常这些错误是由于您的 pom.xml 中没有正确的依赖项(假设您是 运行 Mavenized 项目)导致的,这可能是由于 copying/pasting raw XML 代码,等等。
尝试从调色板中删除您要使用的组件,然后重新添加它。这应该会自动将依赖项添加到您的 pom.xml.