Add WebLogicRequestUpgradeStrategy

This change creates an AbstractTyrusRequestUpgradeStrategy shared
between the WebLogic and GlassFish sub-classes.

The version of Tyrus is lowered to 1.3.5 to match the version used
in WebLogic (12.1.3) and that in turn requires a little extra effort
in the base AbstractTyrusRequestUpgradeStrategy to make up for
changes that have taken place from Tyrus 1.3.5 to 1.7.

Issue: SPR-11293
This commit is contained in:
Rossen Stoyanchev
2014-07-25 17:08:11 -04:00
parent 0ad5de3f77
commit c89325b9ca
5 changed files with 544 additions and 157 deletions

View File

@@ -684,10 +684,10 @@ project("spring-websocket") {
exclude group: "org.apache.tomcat", module: "tomcat-websocket-api"
exclude group: "org.apache.tomcat", module: "tomcat-servlet-api"
}
optional("org.glassfish.tyrus:tyrus-spi:1.7")
optional("org.glassfish.tyrus:tyrus-core:1.7")
optional("org.glassfish.tyrus:tyrus-server:1.7")
optional("org.glassfish.tyrus:tyrus-container-servlet:1.7")
optional("org.glassfish.tyrus:tyrus-spi:1.3.5")
optional("org.glassfish.tyrus:tyrus-core:1.3.5")
optional("org.glassfish.tyrus:tyrus-server:1.3.5")
optional("org.glassfish.tyrus:tyrus-container-servlet:1.3.5")
optional("org.eclipse.jetty:jetty-webapp:${jettyVersion}") {
exclude group: "javax.servlet", module: "javax.servlet"
}