For the complete documentation index, see llms.txt. This page is also available as Markdown.

GetRequestClassLoader

This will retrieve the current request's class loader according to BoxLang loading hierarchy:

- If you defined Java settings in your `Application`, it will use the class loader hierarchy defined by those settings. - Else it uses the Global BoxRuntime class loader.

Method Signature

GetRequestClassLoader()

Arguments

This function does not accept any arguments

Examples

Get the request class loader

loader = getRequestClassLoader();
writeOutput( isObject( loader ) );

Result: true

Last updated

Was this helpful?