-
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
Copy ServletHolder class/instance properly during startWebapp #6280
Comments
gregw
added a commit
that referenced
this issue
May 16, 2021
Copy ServletHolder class/instance properly during startWebapp (#6214) ServletHolder.copyClassServlet() method added to correctly copy held class. Cherry picked from 9.4 Signed-off-by: Greg Wilkins <gregw@webtide.com> Co-authored-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
olamy
added a commit
that referenced
this issue
May 21, 2021
Signed-off-by: olivier lamy <oliver.lamy@gmail.com>
olamy
added a commit
that referenced
this issue
May 21, 2021
* add jetty-9.4.41.v20210516 infos in VERSION.TXT Signed-off-by: olivier lamy <oliver.lamy@gmail.com> * add missing issue #6280 Signed-off-by: olivier lamy <oliver.lamy@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When a forced-file (aka jsp-file) servlet holder is found, the held class is copied over from the servlet named "JSP". However, only the class name is copied, so if there is a class instance from a different classloader, the resulting servlet holder will fail. Any class instance also needs to be copied.
The text was updated successfully, but these errors were encountered: