xmlns 名前空間プレフィックスとスキーマの場所を Mule 設定の mule 要素タグに追加します。
プレフィックス:
xmlns:context="http://www.springframework.org/schema/context"
スキーマの場所:
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
以下のようになります。
例えば:
<mule xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:spring="http://www.springframework.org/schema/beans"
xmlns:http="http://www.mulesoft.org/schema/mule/http"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/3.3/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/3.3/mule-http.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
">
<context:property-placeholder location="C:/path/to/file/settings.properties" />
........... Other stuff
</mule>