5

Mule 3 を使用して、JDBC を使用してデータベースにクエリを実行しています。.properties ファイルからの入力に応じてクエリを変更したいと考えています。私はこれをxmlに持っています...

<context:property-placeholder location="C:\path\to\file\settings.properties" />

次の例外を取得しています...

Exception in thread "main" org.mule.module.launcher.DeploymentInitException: SAXParseException: The prefix "context" for element "context:property-placeholder" is not bound.

特別な .xsd ファイルを含める必要がありますか?

4

5 に答える 5

7

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>
于 2013-06-25T19:30:12.870 に答える
4

同じ問題があり、修正しました。ここで私がしたこと。

  1. すべての .properties を src/main/resources の下に保持
  2. < context:property-placeholder location="file.dev.properties,file.stage.properties" />
  3. すべてのファイルをクラスパスに保持することは困難でした。プロジェクトフォルダーに移動し、テキストパッドで.classpathファイルを開き、以下の行を追加します

    < classpathentry 
      including="file.dev.properties|file.prod.properties|file.stage.properties"
      kind="src" path="src/main/resources"/ >
    
  4. 保存して更新すると機能します。
于 2013-10-07T19:19:50.293 に答える
0

xsi:schemaLocation で次の xsd を使用する --

http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-current.xsd

于 2013-06-25T18:21:38.800 に答える
0

プロパティファイルをリソースフォルダーの下に置くだけで、

プロパティプレースホルダーでこの「 classpath:settings.properties 」を使用すると、機能します...

于 2013-07-07T10:06:11.490 に答える