3

Spring .properties ファイルを介して構成したい Mule フローがあります。これを行う方法についてMuleのドキュメントを読みましたが、正しいと確信していますが、次のようになります。

Could not load properties; nested exception is java.io.FileNotFoundException: 
class path resource [agt-commission.properties] cannot be opened because 
it does not exist

私の Mule フロー XML ファイルは次で始まります。

<mule xmlns:tracking="http://www.mulesoft.org/schema/mule/ee/tracking" 
xmlns="http://www.mulesoft.org/schema/mule/core" 
xmlns:mulexml="http://www.mulesoft.org/schema/mule/xml" 
xmlns:http="http://www.mulesoft.org/schema/mule/http" 
xmlns:file="http://www.mulesoft.org/schema/mule/file"
xmlns:jdbc-ee="http://www.mulesoft.org/schema/mule/ee/jdbc" 
xmlns:data-mapper="http://www.mulesoft.org/schema/mule/ee/data-mapper" 
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"
xmlns:context="http://www.springframework.org/schema/context" 
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/http 
http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/file 
http://www.mulesoft.org/schema/mule/file/current/mule-file.xsd
http://www.mulesoft.org/schema/mule/ee/jdbc 
http://www.mulesoft.org/schema/mule/ee/jdbc/current/mule-jdbc-ee.xsd
http://www.mulesoft.org/schema/mule/ee/data-mapper 
http://www.mulesoft.org/schema/mule/ee/data-mapper/current/mule-data-mapper.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/ee/tracking 
http://www.mulesoft.org/schema/mule/ee/tracking/current/mule-tracking-ee.xsd
http://www.springframework.org/schema/context 
http://www.springframework.org/schema/context/spring-context-3.0.xsd">

<spring:beans>
    <context:property-placeholder location="classpath:agt-commission.properties"/>
</spring:beans>

私のプロパティファイルはsrc/main/app、ドキュメントで指定されたフォルダーにあり、ファイル名をコピーして貼り付けたので、同じであることがわかります。

プロジェクトの構造

プロジェクトを Mule Studio (3.5.0) から Mule アプリケーションとして実行しています。

Spring がプロパティ ファイルを見つけられないのはなぜですか?

4

2 に答える 2

3

の代わりにagt-commission.propertiesファイルを保存します。src/main/resourcessrc/main/app

デフォルトでは、原因となっているファイルappはコピーされませんclassesFileNotFoundException

于 2013-10-14T13:14:50.103 に答える
0

プロパティ プレースホルダー ファイルの場合、より適切な場所は src/main/resources です。

app フォルダに提供されるプロパティ ファイルとして、アプリケーション デプロイの詳細が含まれる mule-deploy プロパティがあります。

リソース ファイルを src/main/resources に移動すると、構成ファイルで動作するはずです。

注: これは、POM のビルドで src/main/resources がリソースとして宣言されている場合に機能します。

 <resources>
        <resource>
            <filtering>true</filtering>
            <directory>src/main/resources</directory>
        </resource>
 </resources>

お役に立てれば。

于 2013-10-14T13:28:14.443 に答える