【发布时间】:2014-05-10 16:55:29
【问题描述】:
我成功部署了一个 Vaadin 应用程序,但是在调用它时我看到了ERROR : 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>
【问题讨论】:
标签: google-app-engine vaadin web.xml