加载类路径中不存在的类

发布于 2024-09-11 07:59:15 字数 151 浏览 6 评论 0原文

假设我使用 Groovyc 编译了一个 Groovy 脚本,它在文件系统中生成了一个或多个 .class 文件。在 Java 应用程序中,如何动态地将这些类添加到类路径中以便加载它们并调用它们的方法?目标是预编译 Groovy 脚本并将其存储到数据库中,以便可以从脚本的编译版本执行评估。

Let's say I've compiled a Groovy script using Groovyc, which has generated one or more .class files in the file system. From a Java application, how do I add those classes to the classpath dynamically in order to load them and call their methods? The goal is to pre-compile Groovy scripts and store them into the database, so evaluation can be performed from compiled versions of the scripts.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

隐诗 2024-09-18 07:59:15

您可以创建 URLClassLoader 的实例从目录加载新类:

URL dirUrl = new URL("file:/" + "path_to_dir" + "/");             // 1
URLClassLoader cl = new URLClassLoader(new URL[] {dirUrl},
                             getClass().class.getClassLoader());  // 2
Class loadedClass = cl.loadClass("com.xyz.MyClass");
MyClass obj = (MyClass) loadedClass.newInstance();
obj.doSomething();

第 1 行创建 .class 文件所在目录的 URL

第 2 行创建一个新的 URLClassLoader 实例。第一个参数是用作源的 URL 数组。您可以在数组中指定多个目录 URL。第二个参数是将成为这个新类加载器的父类加载器的类加载器。我们将执行上述代码的类的类加载器作为参数传递。

子类加载器加载的类可以访问父类加载器加载的类。

You can create an instance of URLClassLoader to load new classes from a directory:

URL dirUrl = new URL("file:/" + "path_to_dir" + "/");             // 1
URLClassLoader cl = new URLClassLoader(new URL[] {dirUrl},
                             getClass().class.getClassLoader());  // 2
Class loadedClass = cl.loadClass("com.xyz.MyClass");
MyClass obj = (MyClass) loadedClass.newInstance();
obj.doSomething();

Line 1 creates the URL to the directory where the .class files reside.

Line 2 creates a new URLClassLoader instance. First argument is an array of URLs to be used as the source. You can specify multiple directory URLs within the array. Second argument is the classloader that will become the parent of this new classloader. We pass the classloader of the class executing the above code as this argument.

The classes loaded by a child classloader can access the classes loaded by the parent classloader.

墨落成白 2024-09-18 07:59:15

您需要编写自己的类加载器。

javadoc 链接 具有如何定义自定义的示例。

You need to write your own classloader.

This javadoc link has an example of how you can define a custom one.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文