我有一个正在运行的 Mule 应用程序,我想在其上设置 Jetty 以响应 http 请求。以下配置:
<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,显示的所有内容都是“已接收”。
我想要做的是更新这个,而不是看到“收到”,我想去我定义 index.html 文件的地方。我的假设是我必须将 test:component 更改为出站端点 - 这是正确的吗?我将在哪里指定路径(相对或绝对)?