Jan Bartel
Jan Bartel
**jetty-12** For ee-10 the ServletContext.declareRoles(String... roles) method is not yet implemented, nor is ServletContextHandler.addRoles(String... roles).
** jetty-12.0.x" When the ee9 webapps deploy, the following warning occurs for every webapp: > 2022-07-13 10:20:27.852:WARN :oejes.DefaultServlet:main: Unable to use stylesheet: null - java.lang.IllegalStateException: No FileSystem mounted for :...
**jetty-12.0.x** Some `jetty-ee8-plus` tests are failing, because they use `src/test/resources` such as `web.xml` and `web-fragment.xml` that have not been transformed from `ee9` to `ee8`.
**jetty-12.0.x** Changes were made to the `jetty-ee10-tests-quickstart` for the new `Resource` implementation, but no changes were made to the `jetty-ee9-tests-quickstart` classes. Need to port those changes from ee10 to ee9.
**jetty-12.0.x* When you hit any of the urls for the ee9 demos or ee10 demos, the log always shows this kind of output: > 2022-07-12 18:21:09.314:WARN :oeju.Blocker:qtp133250414-31: Blocking.Callback incomplete >...
**jetty-10.0x** Test is failing on CI builds of jetty-10.0.x. > org.opentest4j.AssertionFailedError: Unexpected exception type thrown ==> expected: but was: > at org.junit.jupiter.api.AssertThrows.assertThrows(AssertThrows.java:65) > at org.junit.jupiter.api.AssertThrows.assertThrows(AssertThrows.java:37) > at org.junit.jupiter.api.Assertions.assertThrows(Assertions.java:3082) > at...
Closes #8460 Simplify the set up of the DefaultSessionIdManager to remove requirement to separately call `server.setSessionIdManager`.
Add a check for being started to the `DefaultSessionIdManager` and either log or throw an exception if it is not started. This will avoid an NPE when a session is...
From section 10.9.2 Error Pages: > If no error-page declaration containing an exception-type fits using the class- > hierarchy match, and the exception thrown is a ServletException or subclass >...
The manifest for the 4.0.2 version of the api jar has these export-package headers: > Export-Package: javax.servlet;uses:="javax.servlet.annotation,javax.se > rvlet.descriptor";version="4.0.0",javax.servlet.annotation;uses:="jav > ax.servlet";version="4.0.0",javax.servlet.descriptor;version="4.0.0", > javax.servlet.http;uses:="javax.servlet";version="4.0.0" Surely that should be version 4.0.2? Otherwise...