如何在mule esb中创建网页

时间:2014-12-03 06:01:16

标签: jsp mule mule-studio mule-component

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

我怎样才能创建JSP页面?

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

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

我如何使用Mule ESB实现此功能?

1 个答案:

答案 0 :(得分: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

希望它有所帮助。