複数のアプリで共有されているプロパティ ファイルがあります。このプロパティに 1 つのアプリでアクセスするには、次のタグを使用します。
<context:property-placeholder location="classpath:br/com/empresa/configuracao/mule-apps.properties"/>
データベース属性接続などのいくつかの Mule コンポーネントでは、次の式を使用してプロパティ pe: にアクセスします${db.user}
。できます!
しかし、Java Transformer では、どのようにプロパティにアクセスするのでしょうか?
次の手順を試しましたが、戻りましたnull
:
System.getProperty("db.user");
message.getInboundProperty("db.user");
message.getOutboundProperty("db.user");
message.getInvocationProperty("db.user");
Mule Java Transformer のプロパティにアクセスする方法はありますか?