2013-04-05 83 views
0

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

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

src->main->app->webapps->WEB-INF->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>* 

任何帮助或建议下创建一个web.xml。

回答

0

你错过了一个web应用程序上下文目录:src->main->app->webapps->WEB-INF->web.xml,即你应该有这样的:src->main->app->webapps->my-context->WEB-INF->web.xml

请仔细阅读BookStore示例,您应该毫无困难地达成目标。