在 Quarkus Native 中包含文件(不是类路径资源)

Including files (NOT classpath resource) in Quarkus Native

在 Quarkus 中,要包含随机文件 作为类路径资源 ,我们使用 quarkus.native.resources.includes (https://quarkus.io/guides/writing-native-applications-tips#including-resources).

如何在文件系统中包含文件? IE。使用 new File(thePath).

阅读的内容

如果我们使用 Jib,我们只需将这些文件放入 src/main/jib。但这是针对非本地人的。

构建本机二进制文件与将文件添加到目标平台的文件系统无关。

如果您的目标是使用本机二进制文件创建容器镜像并将文件添加到容器镜像的文件系统,那么您可以将 Quarkus 与 Jib and the files to src/main/jib (as you mentioned). These files will be included on the built container image as described here.

结合使用