Skip to content

Commit

Permalink
Merge pull request #550 from Artur-/load-servlet-with-app-classloader
Browse files Browse the repository at this point in the history
Load using the application class loader
  • Loading branch information
deki authored Apr 28, 2023
2 parents 5d689a2 + 8ed5650 commit 935b9d8
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -523,9 +523,7 @@ public JspConfigDescriptor getJspConfigDescriptor() {

@Override
public ClassLoader getClassLoader() {
// for the time being we return the default class loader. We may want to let developers override this int the
// future.
return ClassLoader.getSystemClassLoader();
return getClass().getClassLoader();
}


Expand Down

0 comments on commit 935b9d8

Please sign in to comment.