以下のような HTTP インバウンドおよびコンポーネント クラスを含む MULE のフローがあります。
<flow name="MetaService">
<http:inbound-endpoint address="http://localhost:8000/jcore/meta/user"
transformer-refs="HttpParams" responseTransformer-refs="JavaObjectToJson">
</http:inbound-endpoint>
<component class = "com.jcore.Meta" />
</flow>
"localhost:8000/jcore/meta/user2" のような別の URL の要求を受け入れる必要がある場合は、別のフローを作成する必要があります..!!
"localhost:8000/jcore/meta/{variable}" のような MULE のオプションはありますか? その変数を読み取って、それに応じて適切なコンポーネント クラスを呼び出すことができます..??