2013-04-05 80 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示例,您應該毫無困難地達成目標。