webapp
webapp copied to clipboard
Change to Jakarta EE Namespace
Due to Oracle’s ownership of the “Java” trademark, usage of the javax.* namespace has been restricted, and the jakarta.* namespace was adopted by the Eclipse Foundation.
To be able to upgrade from Servlet 4.0 to Servlet 5.0 (the version used by Jetty 11), we need to change from *.javax
to *.jakarta
.
https://stackoverflow.com/questions/68707177/upgrade-servlet-4-0-1-to-servlet-5-0
Relates to #1698