1

我想使用 Mule ESB 创建 JSP 页面。

如何创建 JSP 页面?

是否可以使用该 JSP 页面部署我的 Mule 应用程序?

当我运行我的 Mule 应用程序时;我的前端页面应该被执行(JSP 页面)。

我如何使用 Mule ESB 来实现这一点?

4

1 回答 1

5

您可以在 mule 中使用 jetty:connector 作为嵌入式 Jetty 服务器,例如:

<jetty:connector name="Jetty" doc:name="Jetty"
    doc:description="This is the conector to Jetty server">
    <jetty:webapps port="8060" host="localhost" directory="${app.home}/webapps" />
</jetty:connector>

webapps里面可能有WEB-INF、jsp、images、css、js等。

http://www.mulesoft.org/documentation/display/current/Jetty+Transport+Reference

希望能帮助到你。

于 2014-12-03T13:11:11.713 回答