diff options
author | Artur Signell <artur@vaadin.com> | 2012-10-23 15:41:51 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-10-23 15:41:51 +0300 |
commit | 439b88b09de669189d71279e9a42588b5ee1a753 (patch) | |
tree | 7d40e11735e50cf07c3379618f05e132f6d60e93 /WebContent/WEB-INF | |
parent | faf3766f7df9a3749a9d88991a77f43bae3efd87 (diff) | |
download | vaadin-framework-439b88b09de669189d71279e9a42588b5ee1a753.tar.gz vaadin-framework-439b88b09de669189d71279e9a42588b5ee1a753.zip |
Moved init params after servlet name and class (#10040)
Change-Id: I9a54ab880b565297f401e14dff7eac25fc369beb
Diffstat (limited to 'WebContent/WEB-INF')
-rw-r--r-- | WebContent/WEB-INF/web.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebContent/WEB-INF/web.xml b/WebContent/WEB-INF/web.xml index 46ace4520b..820eb2cbce 100644 --- a/WebContent/WEB-INF/web.xml +++ b/WebContent/WEB-INF/web.xml @@ -49,6 +49,8 @@ </servlet> <servlet> + <servlet-name>VaadinApplicationRunner</servlet-name> + <servlet-class>com.vaadin.launcher.ApplicationRunnerServlet</servlet-class> <!-- Non-default values for testing purposes --> <init-param> <param-name>heartbeatInterval</param-name> @@ -66,8 +68,6 @@ <param-name>testParam</param-name> <param-value>42</param-value> </init-param> - <servlet-name>VaadinApplicationRunner</servlet-name> - <servlet-class>com.vaadin.launcher.ApplicationRunnerServlet</servlet-class> </servlet> <!-- For testing GAE - the deployment script changes this to use GAEVaadinServlet --> |