如何正确定位 Spring 上下文 属性-占位符?

How to properly locate Spring Context property-placeholder?

我正在尝试在 MuleSoft 的 Anypoint Studio 平台中使用 Mule 测试应用程序实现过时的开源属性文件管理器 (https://github.com/Confluex/Zuul/wiki)。这似乎需要 Spring 上下文架构,但项目找不到它。它不断声明没有 'context:property-placeholder'。我觉得版本控制错误可能是问题所在。这是我的尝试:

<mule 
    xmlns="http://www.mulesoft.org/schema/mule/core" 
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:spring="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:zuul="zuul-spring-client-1.5.1"
    xsi:schemaLocation="
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
zuul-spring-client-1.5.1 zuul-spring-client-1.5.1.xsd">


        <context:property-placeholder properties-ref="MuleMeetZuul" />
    
</mule>

这是抛出的错误:

Caused by: org.mule.runtime.api.exception.MuleRuntimeException: There was '1' error while parsing the given file 'zuultest.xml'.
Full list:
org.xml.sax.SAXParseException; lineNumber: 17; columnNumber: 65; cvc-complex-type.2.4.a: Invalid content was found starting with element 'context:property-placeholder'. One of '{"http://www.mulesoft.org/schema/mule/core":annotations, "http://www.mulesoft.org/schema/mule/core":description, "http://www.mulesoft.org/schema/mule/core":global-property, "http://www.mulesoft.org/schema/mule/core":configuration, "http://www.mulesoft.org/schema/mule/core":notifications, "http://www.mulesoft.org/schema/mule/core":abstract-extension, "http://www.mulesoft.org/schema/mule/core":abstract-shared-extension, "http://www.mulesoft.org/schema/mule/core":abstract-mixed-content-extension, "http://www.mulesoft.org/schema/mule/core":abstract-security-manager, "http://www.mulesoft.org/schema/mule/core":abstract-transaction-manager, "http://www.mulesoft.org/schema/mule/core":abstract-shared-transaction-manager, "http://www.mulesoft.org/schema/mule/core":abstract-connector, "http://www.mulesoft.org/schema/mule/core":abstract-shared-connector, "http://www.mulesoft.org/schema/mule/core":abstract-global-endpoint, "http://www.mulesoft.org/schema/mule/core":abstract-exception-strategy, "http://www.mulesoft.org/schema/mule/core":abstract-on-error, "http://www.mulesoft.org/schema/mule/core":abstract-flow-construct, "http://www.mulesoft.org/schema/mule/core":flow, "http://www.mulesoft.org/schema/mule/core":sub-flow, "http://www.mulesoft.org/schema/mule/core":top-level-processor, "http://www.mulesoft.org/schema/mule/core":abstract-global-intercepting-message-processor, "http://www.mulesoft.org/schema/mule/core":abstract-object-store}' is expected.

如有任何建议,我们将不胜感激。谢谢。

如果您尝试在 Mule 4 中使用 Mule 3 实现,它将失败,这是可以预料的。 Mule 3 属性 占位符提供者直接 Spring 属性 占位符提供者。 Mule 4 使用不同的方式来实现它们。 <context:property-placeholder> 在 Mule 4 中不存在。它的替代品 <configuration-properties> 不适用于此用法。

相反,您将不得不使用 Mule SDK for Java 通过在工厂 class 中实现 ConfigurationPropertiesProviderFactory 接口并将 DefaultConfigurationPropertiesProvider class 扩展到 属性 来开发自定义配置提供程序实施供应商。在提供程序中,您将需要使用 Zuul 库来实现获取键和值的操作。

文档中提供了说明:https://docs.mulesoft.com/mule-runtime/4.3/custom-configuration-properties-provider