HTTP2 docu improvements
Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/e3a1abb5 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/e3a1abb5 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/e3a1abb5 Branch: refs/heads/master Commit: e3a1abb5b1b165c2127beaaeb567879ee06335f0 Parents: a0c43bb Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Fri Jul 15 19:34:05 2016 +0200 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Sat Jul 16 10:43:01 2016 +0200 ---------------------------------------------------------------------- .../src/docs/guide/http2push/http2push_1.gdoc | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/e3a1abb5/wicket-user-guide/src/docs/guide/http2push/http2push_1.gdoc ---------------------------------------------------------------------- diff --git a/wicket-user-guide/src/docs/guide/http2push/http2push_1.gdoc b/wicket-user-guide/src/docs/guide/http2push/http2push_1.gdoc index e03477d..d6888fd 100644 --- a/wicket-user-guide/src/docs/guide/http2push/http2push_1.gdoc +++ b/wicket-user-guide/src/docs/guide/http2push/http2push_1.gdoc @@ -1,27 +1,22 @@ Currently there are different implementations for each server to be used until the Servlet 4.0 (JSR 369) specification reaches the final state. Current supported servers are: -* Eclipse Jetty -* Apache Tomcat -* redhat undertow +* Eclipse Jetty 9.3+ +* Apache Tomcat 8.5+ +* RedHat Undertow 2+ For the setup you need to follow those steps: 1. Setup your server to use HTTP/2 and follow the instructions provided by the vendor specific documentation -2. Add two dependencies to provide the push functionality - one core dependency and one for the custom server implementation. +2. Add the respective dependency for your web server to provide the push functionality. {code} <dependency> <groupId>org.apache.wicket.experimental.wicket8</groupId> - <artifactId>wicket-http2-core</artifactId> - <version>0.X-SNAPSHOT</version> -</dependency> -<dependency> - <groupId>org.apache.wicket.experimental.wicket8</groupId> <artifactId>wicket-http2-jetty</artifactId> - <!--<artifactId>wicket-http2-tomcat</artifactId> - <artifactId>wicket-http2-undertow</artifactId>--> + <!--<artifactId>wicket-http2-tomcat</artifactId>--> + <!--<artifactId>wicket-http2-undertow</artifactId>--> <version>0.X-SNAPSHOT</version> </dependency> {code}
