这是我第一次尝试部署具有大量服务器端功能的 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>
任何帮助或指示将不胜感激。