Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
3.0.0
-
None
Description
ExecutorClassLoader is capable of loading dynamically generated classes from the REPL via either RPC or HDFS, but right now it always delegates resource loading to the parent class loader. That makes the dynamically generated classes unavailable to uses other than class loading.
Such need may arise, for example, when json4s wants to parse the Class file to extract parameter name information. Internally it'd call the class loader's getResourceAsStream to obtain the Class file content as an InputStream.
This ticket tracks an improvement to the ExecutorClassLoader to allow fetching dynamically generated Class files from the REPL as resource streams.