http 要求に応答するように Jetty をセットアップしたい作業中の Mule アプリケーションがあります。次の構成:
<jetty:endpoint address="http://localhost:8080"
name="jettyEndpoint"
host="localhost"
port="8080" path="/"
synchronous="true" />
<service name="jettyUMO">
<inbound>
<jetty:inbound-endpoint ref="jettyEndpoint" />
</inbound>
<test:component appendString="Received" />
</service>
...アプリケーションを起動し、選択したブラウザーをhttp://localhost:8080にポイントすると機能します- 表示されるのは、test:component ごとに「Received」だけです。
私がやりたいのは、これを更新して、「Received」を表示する代わりに、index.html ファイルを定義した場所に移動することです。私の仮定は、送信エンドポイントのために test:component out を変更する必要があるということです - これは正しいですか? パス (相対パスまたは絶対パス) はどこで指定しますか?