Merge pull request #6126 from eclipse/jetty-11.0.x-systemclasses-jakarta

Issue #6125 - Add jakarta.* to system classes defaults
This commit is contained in:
Joakim Erdfelt 2021-04-06 10:37:38 -05:00 committed by GitHub
commit 269d9b718c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -166,6 +166,7 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
public static final ClassMatcher __dftSystemClasses = new ClassMatcher(
"java.", // Java SE classes (per servlet spec v2.5 / SRV.9.7.2)
"javax.", // Java SE classes (per servlet spec v2.5 / SRV.9.7.2)
"jakarta.", // Jakarta classes (per servlet spec v5.0 / Section 15.2.1)
"org.xml.", // javax.xml
"org.w3c." // javax.xml
);