これは、かなりの量のサーバーサイド機能を備えた GWT アプリケーションをデプロイする最初の試みです。
GWT Web アプリケーションをプロダクション モードで動作させることができません。開発モードでは問題なく動作しますが、コンパイル済みの .war ファイルを Elastic Beanstalk にアップロードしてプログラムを実行しようとすると、サーバー側のコードが失敗します。
次のブラウザ エラーが表示されます。
-- [16:07:33.342] POST http://campusmap.elasticbeanstalk.com/qmap/sside [HTTP/1.1 500 内部サーバー エラー 106 ミリ秒]
このチュートリアルに基づいた 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>
どんな助けや指針も大歓迎です。