diff options
author | Henri Sara <henri.sara@itmill.com> | 2011-08-17 12:34:53 +0000 |
---|---|---|
committer | Henri Sara <henri.sara@itmill.com> | 2011-08-17 12:34:53 +0000 |
commit | aaa1b378c923ff52df94963496613c82fbfcf8d9 (patch) | |
tree | 1b25576fa6621f0ff0307f81b2a9cf760f2008bd /WebContent/WEB-INF | |
parent | 5df3f8a8266eb600531a24b616502f923cc50821 (diff) | |
download | vaadin-framework-aaa1b378c923ff52df94963496613c82fbfcf8d9.tar.gz vaadin-framework-aaa1b378c923ff52df94963496613c82fbfcf8d9.zip |
#7433 separate servlet configuration in web.xml to enable GAE testing
svn changeset:20449/svn branch:6.7
Diffstat (limited to 'WebContent/WEB-INF')
-rw-r--r-- | WebContent/WEB-INF/web.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/WebContent/WEB-INF/web.xml b/WebContent/WEB-INF/web.xml index 2f0a69cf5a..b5cd3fa1c8 100644 --- a/WebContent/WEB-INF/web.xml +++ b/WebContent/WEB-INF/web.xml @@ -29,11 +29,26 @@ </init-param>
</servlet>
+ <!-- For testing GAE - the deployment script changes this to use GAEApplicationServlet -->
+ <servlet>
+ <servlet-name>IntegrationTest</servlet-name>
+ <servlet-class>com.vaadin.terminal.gwt.server.ApplicationServlet</servlet-class>
+ <init-param>
+ <param-name>application</param-name>
+ <param-value>com.vaadin.tests.integration.IntegrationTestApplication</param-value>
+ </init-param>
+ </servlet>
+
<servlet-mapping>
<servlet-name>VaadinApplicationRunner</servlet-name>
<url-pattern>/run/*</url-pattern>
</servlet-mapping>
+ <servlet-mapping>
+ <servlet-name>IntegrationTest</servlet-name>
+ <url-pattern>/integration/*</url-pattern>
+ </servlet-mapping>
+
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
|