Description
See https://github.com/quarkusio/quarkus/issues/2531 ; essentially quarkus dev mode classpath resource loading only works properly if
Thread.currentThread().getContextClassLoader().getResourceAsStream(uri);
is used. Currently, JsltEndpoint uses
JsltEndpoint.class.getClassLoader().getResourceAsStream(getResourceUri());
I've tested locally that quarkus dev mode loads the file properly w/ this change.
A simple route/jslt file are all that are needed to test this (locally, I'm simply using jslt like {"foo":"bar"}).
Attachments
Issue Links
- relates to
-
CAMEL-17116 components - Loading resource from classpath should use ClassResolver API
- Resolved
- links to