我有这个web.xml:
<?xml version="1.0" encoding="UTF-8"?><web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>TestVaadin</display-name>
<context-param>
<description>
Vaadin production mode</description>
<param-name>productionMode</param-name>
<param-value>false</param-value>
</context-param>
<servlet>
<servlet-name>TestvaadinApplication</servlet-name>
<servlet-class>
com.vaadin.terminal.gwt.server.ApplicationServlet</servlet-class>
<init-param>
<description>
Vaadin application class to start</description>
<param-name>application</param-name>
<param-value>com.example.testvaadin.TestvaadinApplication</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>TestvaadinApplication</servlet-name>
<url-pattern>/TestvaadinApplicationServlet/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>TestvaadinApplication</servlet-name>
<url-pattern>/VAADIN/*</url-pattern>
</servlet-mapping>
<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>
我正在尝试从eclipse进行调试,而我是新手,但我无法理解为什么我会在默认的http帖子中获得404,如果我调用/ VAADIN /则为500。我做什么,我没有得到代码的结果。 Vaadin并没有说太多,所以我去了很多关于gwt的网站......
相反,如果我在firefox中使用/ VAADIN /我得到一些下降视图。 有没有人知道我的地址网址应该正确指向这个web.xml?
或...应该是web.xml的下降设置。 2天我不能超越: - (
答案 0 :(得分:1)
您的网址应该是(因为您正在使用Eclipse):
localhost:{Tomcat Port} / {Eclipse Project Name} / TestvaadinApplicationServlet /
如果我没弄错,Eclipse会自动为您创建一个* .war并将其部署到Tomcat安装的/ webapps目录中(假设您正在使用Tomcat),默认情况下该war以Eclipse项目命名。