user3855589
user3855589

Reputation: 1103

How to create webpage in mule esb

I would like to create JSP page using Mule ESB.

How could I create a JSP page?

Is it possible to deploy my Mule application with that JSP page?

When I run my Mule application; my front end page should be executed (JSP page).

How could I implement this with Mule ESB?

Upvotes: 1

Views: 1501

Answers (1)

Julio Cejas
Julio Cejas

Reputation: 573

You can use jetty:connector in mule as embedded Jetty Server, For example:

<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>

inside webapps may have WEB-INF, jsp, images, css, js, etc.

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

Hope it helps.

Upvotes: 5

Related Questions