我已经部署了一个 gwt 应用程序,它在开发模式下运行良好,但是当我尝试在 Tomcat 或 Jboss 上上传它时,无论服务器是否打开,我总是得到 404 页面。我尝试输入:http://localhost:8080/gwtexample , http://localhost:8080/gwtexample/index.html and
127.0.0.1:8080/gwrexample` 没有成功。
我将战争文件放在 jboss/standalone/deployment 和 C:\Program Files\Apache Software Foundation\Tomcat 7.0\webapps\ROOT 下
and here is my web.xml <?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<servlet>
<servlet-name>requestFactoryServlet</servlet-name>
<servlet-class>com.google.web.bindery.requestfactory.server.RequestFactoryServlet</servlet-class>
<init-param>
<param-name>symbolMapsDirectory</param-name>
<param-value>WEB-INF/classes/symbolMaps/</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>requestFactoryServlet</servlet-name>
<url-pattern>/gwtRequest</url-pattern> </servlet-mapping>
<welcome-file-list>
<welcome-file>BfiWebTop.html</welcome-file></welcome-file-list>
</web-app>