0

这是我第一次尝试部署具有大量服务器端功能的 GWT 应用程序 - 所以我可能在做一些愚蠢的事情。

我无法让我的 GWT Web 应用程序在生产模式下工作。它在开发模式下运行良好,但是当我将编译后的 .war 文件上传到 Elastic Beanstalk 并尝试运行该程序时,服务器端代码会失败。

我收到以下浏览器错误:

-- [16:07:33.342] POST http://campusmap.elasticbeanstalk.com/qmap/sside [HTTP/1.1 500 内部服务器错误 106ms]

我已经使用基于本教程的 ant 脚本编译了我的项目: http ://www.rubiconred.com/blog/build-package-a-gwt-app-to-war-using-ant/

<?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"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"  
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
    <!-- TODO: Add <servlet> tags for each servlet here. -->
    <!-- TODO: Add <servlet-mapping> tags for each <servlet> here. -->
    <!-- TODO: Optionally add a <welcome-file-list> tag to display a welcome file. -->
<!-- Default page to serve -->
  <!-- Servlets -->
  <servlet>
    <servlet-name>serverSide</servlet-name>
    <servlet-class>com.qmap.core.server.ServerSideImpl</servlet-class>
  </servlet>

  <servlet-mapping>
    <servlet-name>serverSide</servlet-name>
    <url-pattern>/qmap/sside</url-pattern>
  </servlet-mapping>    


  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
  </welcome-file-list>

</web-app>

任何帮助或指示将不胜感激。

4

1 回答 1

1

我通过从 elasticbeanstalk 中删除 Web 应用程序并在专用的 apache 服务器上运行它解决了这个问题 - 这使我能够访问日志文件和堆栈跟踪,并且我能够解决问题。确切的错误是我的代码中与 apache 服务器相关的 uri 不正确。

于 2012-10-24T18:11:55.857 回答