What should I do with third-party jar resource in Native mode in Quarkus Extension

38 Views Asked by At
InputStream inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream("META-INF/xxxxx");

I am writing a Quarkus Extension, a third-party jar whose META-INF/xxxxx is null in native mode but there are no problems with jvm mode.
If you know the solution or the related documents, please let me know, thank you

1

There are 1 best solutions below

2
On

You need to make GraalVM aware of the resource you are going to access by doing the following:

quarkus.native.resources.includes=META-INF/xxxxx

See this for more information.