2014-05-10 262 views
0

我成功部署了Vaadin應用程序,但在調用它時,我看到ERROR : NOT_FOUND
我想我的默認頁面沒有找到,因爲默認頁面被選中錯了。將vaadin應用程序部署到Google App Engine - 錯誤NOT_FOUND

問題: 我該如何指出(我想在我的web.xml中)到我的默認頁面?

web.xml

  <?xml version="1.0" encoding="UTF-8"?> 
      <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0"> 
       <display-name>GoogleAppVaadin701Project</display-name> 
       <welcome-file-list> 
       <welcome-file>index.html</welcome-file> 
       <welcome-file>index.htm</welcome-file> 
       <welcome-file>index.jsp</welcome-file> 
       <welcome-file>default.html</welcome-file> 
       <welcome-file>default.htm</welcome-file> 
       <welcome-file>default.jsp</welcome-file> 
       </welcome-file-list> 
      </web-app> 

enter image description here

回答

0

Vaadin Eclipse插件不會創建web.xml中該工程vaadin應用。在vaadin的書中,你可以找到關於web.xml的部分 - https://vaadin.com/book/vaadin7/-/page/application.environment.html

以下是基本的servlet定義和映射基於書的工作正常。只需更改UI參數以指向您的UI實施

<servlet> 
    <servlet-name>myservlet</servlet-name> 
    <servlet-class> 
    com.vaadin.server.GAEVaadinServlet 
    </servlet-class> 

    <init-param> 
    <param-name>UI</param-name> 
    <param-value>com.example.higoogle.HigoogleUI</param-value> 
    </init-param> 
</servlet> 

<servlet-mapping> 
    <servlet-name>myservlet</servlet-name> 
    <url-pattern>/*</url-pattern> 
</servlet-mapping> 
相關問題