在Mule中创建注册表单

时间:2013-04-05 06:11:55

标签: mule

我是MuleESB的新手。我想用Mule创建一个注册表,但我被卡住了。

我不知道如何在启动应用程序时显示index.jsp。我已经通过了BookStore示例,但无法获得有效的信息。

我在src->main->app->webapps->WEB-INF->web.xml

下创建了一个web.xml
*<web-app....>
<listener>
    <listener-class>org.mule.config.builders.MuleXmlBuilderContextListener</listener-class>
</listener>

<welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>* 

任何帮助或建议。

1 个答案:

答案 0 :(得分:0)

您错过了src->main->app->webapps->WEB-INF->web.xml下的网络应用程序上下文目录,即您应该具有以下内容:src->main->app->webapps->my-context->WEB-INF->web.xml

仔细遵循BookStore示例,您应该毫无困难地实现目标。