我在 MULE 中有一个 Flow,其中包含一个 HTTP 入站和组件类,如下所示:
<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>
现在,如果我必须接受对另一个 URL 的请求,例如“localhost:8000/jcore/meta/user2”,我必须创建另一个流程..!!
MULE 中是否有任何选项,例如 "localhost:8000/jcore/meta/{variable}" ,我可以在其中读取该变量并根据该变量调用适当的组件类..?