-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jetty-10 websocket-servlet exposes websocket-core classes #4722
Comments
lachlan-roberts
added a commit
that referenced
this issue
Mar 27, 2020
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
lachlan-roberts
added a commit
that referenced
this issue
Mar 27, 2020
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
lachlan-roberts
added a commit
that referenced
this issue
Mar 29, 2020
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
lachlan-roberts
added a commit
that referenced
this issue
Apr 16, 2020
- Fix packages exposed in the websocket configuration - Make servlet dependency for websocket-util optional Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
lachlan-roberts
added a commit
that referenced
this issue
Apr 19, 2020
…jpms Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
lachlan-roberts
added a commit
that referenced
this issue
Apr 22, 2020
- This module contains the WebSocketUpgradeFilter. - Also has an internal package with the components used to implement websocket upgrades common to both the jetty and javax websocket implementations. Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
lachlan-roberts
added a commit
that referenced
this issue
Apr 22, 2020
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
lachlan-roberts
added a commit
that referenced
this issue
May 7, 2020
Issue #4722 - remove websocket-servlet
The |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Jetty version
10.0.x
Description
websocket-servlet
exposeswebsocket-core
classes which are transitively exported through the other modules which require it.It doesn't even look like
websocket-servlet
is really necessary at all. TheWebSocketServlet
andWebSocketServletFactory
classes are only used for thewebsocket-jetty-server
and nowhere in the javax implementation. The rest of the classes are to enable upgrades with theWebSocketUpgradeFilter
, and these classes could be moved towebsocket-util
orwebsocket-core
.The text was updated successfully, but these errors were encountered: