0

Mule で .properties ファイルから値をロードしようとしていますが、ファイルが明らかに存在するのに FileNotFound 例外が発生します。相対パスを使用してファイルをプロジェクト ディレクトリ内に配置しようとしましたが、何も機能しません。

これが私のMuleフローからの関連するものです-

<?xml version="1.0" encoding="UTF-8"?>

<mule 
xmlns:context="http://www.springframework.org/schema/context"
xmlns:file="http://www.mulesoft.org/schema/mule/file" 
xmlns="http://www.mulesoft.org/schema/mule/core" 
xmlns:mulexml="http://www.mulesoft.org/schema/mule/xml" 
xmlns:jdbc-ee="http://www.mulesoft.org/schema/mule/ee/jdbc" 
xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" 
xmlns:spring="http://www.springframework.org/schema/beans" 
xmlns:core="http://www.mulesoft.org/schema/mule/core" 
version="EE-3.4.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.mulesoft.org/schema/mule/xml http://www.mulesoft.org/schema/mule/xml/current/mule-xml.xsd
http://www.mulesoft.org/schema/mule/ee/jdbc http://www.mulesoft.org/schema/mule/ee/jdbc/current/mule-jdbc-ee.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
http://www.mulesoft.org/schema/mule/file http://www.mulesoft.org/schema/mule/file/current/mule-file.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" />

<oracle data source info />
<connector info />
<flow name="temp" doc:name="Temp" >
<other stuff />
</flow>
</mule>

この問題を乗り越える方法はありますか?

4

3 に答える 3

2

settings.propertiesファイルをクラスパス (プロジェクトの src/main/resources/ の直下) に置き、次のように参照します。

<context:property-placeholder location="settings.properties" />

于 2013-06-27T01:31:17.293 に答える
2

コンテキスト プロパティのプレース ホルダーは、デフォルトでクラスパスを調べます。

次の構成を使用して、ファイルが存在する物理パスでファイルを探します。

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

これはうまくいくはずです。

最も推奨される方法は、プロパティ ファイルをプロジェクト クラスパスに保持することです。

お役に立てれば。

于 2013-06-27T14:02:42.990 に答える
0

プロパティ ファイルを app/main/src のようなクラス パスに配置します。それは機能します プロパティファイルに関連する詳細については、以下のリンクをご覧ください。

https://docs.mulesoft.com/mule-user-guide/v/3.5/configuring-properties

于 2018-03-03T13:29:03.510 に答える