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
You need to make GraalVM aware of the resource you are going to access by doing the following:
See this for more information.