Google App Engine 用に web.xml を構成したいのですが、構成が機能しません。index.html
でデフォルトを変更したいWebApp/index.html
。
は次のweb.xml
とおりです。
<servlet>
<servlet-name>App</servlet-name>
<servlet-class>bg.app.AppServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>App</servlet-name>
<url-pattern>/WebApp/*</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>WebApp/index.html</welcome-file>
</welcome-file-list>