Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,14 @@ JsonNode readJson(String relativePath, ObjectMapper mapper) throws IOException {
}
}
String resource = "pricing-snapshots/" + relativePath;
try (InputStream in = Thread.currentThread().getContextClassLoader().getResourceAsStream(resource)) {
// Use the class's own loader rather than the thread's context loader.
// In a GraalVM native image the thread context loader can be the
// bootstrap loader, which sees no application resources, while the
// class's loader sees everything bundled into the image.
ClassLoader cl = PricingService.class.getClassLoader();
try (InputStream in = cl != null
? cl.getResourceAsStream(resource)
: ClassLoader.getSystemResourceAsStream(resource)) {
if (in == null) {
return null;
}
Expand Down
6 changes: 6 additions & 0 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ quarkus:
# No 'delay' value is set - observers run synchronously, no artificial sleep is introduced.
delay-enabled: true
native:
resources:
# The Pricing service reads its bundled snapshot at runtime via
# ClassLoader#getResourceAsStream. Quarkus's static resource analysis
# cannot detect dynamically-built paths, so the tree is registered
# explicitly to ensure GraalVM includes every file in the native image.
includes: pricing-snapshots/**
additional-build-args:
- --report-unsupported-elements-at-runtime
- --allow-incomplete-classpath
Expand Down
Loading