diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2017-03-14 10:00:27 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2017-03-14 10:00:27 +0100 |
commit | 66503524db1c667d6e2282b333d1aca3ec284fcb (patch) | |
tree | 1fc00e5a759b48780074f10e27afac4408250a25 /java/vaadin/src/main/WebContent/WEB-INF/web.xml | |
parent | 09c4b4be9ec33bac7d814dbeb28095a7a7add835 (diff) | |
download | share-66503524db1c667d6e2282b333d1aca3ec284fcb.zip share-66503524db1c667d6e2282b333d1aca3ec284fcb.tar.gz |
java : vaadin : add HelloWorldServlet
Diffstat (limited to 'java/vaadin/src/main/WebContent/WEB-INF/web.xml')
-rw-r--r-- | java/vaadin/src/main/WebContent/WEB-INF/web.xml | 28 |
1 files changed, 7 insertions, 21 deletions
diff --git a/java/vaadin/src/main/WebContent/WEB-INF/web.xml b/java/vaadin/src/main/WebContent/WEB-INF/web.xml index f4b7f85..6e03c3d 100644 --- a/java/vaadin/src/main/WebContent/WEB-INF/web.xml +++ b/java/vaadin/src/main/WebContent/WEB-INF/web.xml @@ -19,27 +19,13 @@ <!-- <tracking-mode>COOKIE</tracking-mode> --> </session-config> - <servlet> - <servlet-name>default</servlet-name> - <servlet-class>com.vaadin.server.VaadinServlet</servlet-class> - <init-param> - <description>Vaadin application class to start</description> - <param-name>UI</param-name> - <param-value>ch.asynk.HelloWorld</param-value> - </init-param> - <async-supported>true</async-supported> - </servlet> - <servlet-mapping> - <servlet-name>default</servlet-name> - <url-pattern>/*</url-pattern> - </servlet-mapping> <!-- <welcome-file-list> --> - <!-- <welcome-file>index.html</welcome-file> --> - <!-- <welcome-file>index.htm</welcome-file> --> - <!-- <welcome-file>index.jsp</welcome-file> --> - <!-- <welcome-file>default.html</welcome-file> --> - <!-- <welcome-file>default.htm</welcome-file> --> - <!-- <welcome-file>default.jsp</welcome-file> --> - <!-- </welcome-file-list> --> + <!-- <welcome-file>index.html</welcome-file> --> + <!-- <welcome-file>index.htm</welcome-file> --> + <!-- <welcome-file>index.jsp</welcome-file> --> + <!-- <welcome-file>default.html</welcome-file> --> + <!-- <welcome-file>default.htm</welcome-file> --> + <!-- <welcome-file>default.jsp</welcome-file> --> + <!-- </welcome-file-list> --> </web-app> |