加载类路径中不存在的类
假设我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建 URLClassLoader 的实例从目录加载新类:
第 1 行创建 .class 文件所在目录的
URL
。第 2 行创建一个新的
URLClassLoader
实例。第一个参数是用作源的 URL 数组。您可以在数组中指定多个目录 URL。第二个参数是将成为这个新类加载器的父类加载器的类加载器。我们将执行上述代码的类的类加载器作为参数传递。子类加载器加载的类可以访问父类加载器加载的类。
You can create an instance of URLClassLoader to load new classes from a directory:
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.
您需要编写自己的类加载器。
此 javadoc 链接 具有如何定义自定义的示例。
You need to write your own classloader.
This javadoc link has an example of how you can define a custom one.