-
Notifications
You must be signed in to change notification settings - Fork 5
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
Upgrade to Jetty 11 #404
Comments
DavidWhitlock
added a commit
that referenced
this issue
May 21, 2022
…t Jetty. 11, that is. It doesn't work with the GuiceFilter. See #404
Merged
Some discussion at google/guice#1490 |
DavidWhitlock
added a commit
that referenced
this issue
Dec 22, 2022
Changes for Winter 2023 * Resolve #424 by generating project time estimates for the koans project and generating summary for multiple terms of data * Upgraded Jetty to 10.0.11. This is related to #404. * Make small improvements to the REST projects to resolve #423 * Resolve #410 by renaming `student.version` to `grader.version`. * Resolve #418 by changing the Survey program to reject a student id that is not a Java identifier. * Resolve #422 by adding comments that clarify that the TextDumper and TextParser classes are for Project 2. * Resolve #420 by making guava a top-level dependency available to all projects * Resolve #419 by adding a site.xml to the projects and their archetypes. * Updated Maven plugin and third-party dependencies to their latest versions * Resolve #425 by not including an assignment in the Grade Summary Report for which all of its grades are zero. Along the way, I got rid of some warnings and code smells.
It looks like Guice 7.0 supports the Jakarta APIs: https://github.com/google/guice/wiki/Guice700 But it looks like the resteasy-guice module was removed: https://issues.redhat.com/browse/RESTEASY-3329 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While working on #402, I attempted to upgrade the
jetty-maven-plugin
to the latest release,11.0.9
. However, theweb
application wouldn't start because of:GuiceFilter
indeed appears to not implement the jakartaFilter
: https://github.com/google/guice/blob/master/extensions/servlet/src/com/google/inject/servlet/GuiceFilter.javaI'm not sure what to do here. Maybe I can write my own jakarta
Filter
that wraps aGuiceFilter
?In the meantime, I'll stay on Jetty 9.
The text was updated successfully, but these errors were encountered: