Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以覆盖 helidon 项目中的 libs 文件夹?我想在运行时将 jar 复制到类路径。我能够在 weblogic 服务器中使用 -Dweblogic.ext.dirs 来做到这一点。
Helidon 不是应用服务器,因此它只适用于常规 Java 类路径。与任何 Java 程序一样,一旦设置了类路径,它就被设置了。Helidon 不使用多个类加载器,因此没有运行时部署或类似的东西。(当然,您可以自由创建自己的类加载器或任何您想要的东西,因为它只是 Java。)
所以:按照你想要的方式设置你的类路径,然后启动你的使用 Helidon 库的 Java 程序。