- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在生成.java
类文件在运行时生成,并且需要立即在代码中使用这些类。所以我编译了.java
使用编译器 API 来制作 .class
的类文件:
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
DiagnosticCollector<JavaFileObject> diagnostics = new DiagnosticCollector<>();
StandardJavaFileManager manager = compiler.getStandardFileManager(diagnostics, null, null);
File file = new File("path to file");
Iterable<? extends JavaFileObject> sources = manager.getJavaFileObjectsFromFiles(Arrays.asList(file));
CompilationTask task = compiler.getTask(null, manager, diagnostics, null, null, sources);
task.call();
manager.close();
然后我需要使用 Class.forName()
获取对这些已编译类的引用,但是如果我打电话Class.forName("com.foo.Bar")
它抛出 ClassNotFoundException
,假设是因为新的.class
文件未添加到 classpath
我寻找向 classpath
添加类的方法在运行时。我遇到了一些与这个概念相关的歧义:
1. 这种方法(首先使用编译器 API 编译 .java
文件,然后在第二步将其添加到类加载器中)是否正确?能够立即在代码中使用该类。
2. AFAIK,有两种方法可以在运行时将类动态加载到类路径中:一种是使用像这样的自定义类加载器:(我编译时出错,因为它提示 BuiltinClassLoader
没有 addURL
方法):
// Get the ClassLoader class
ClassLoader cl = ClassLoader.getSystemClassLoader();
Class<?> clazz = cl.getClass();
// Get the protected addURL method from the parent URLClassLoader class
Method method = clazz.getSuperclass().getDeclaredMethod("addURL", new Class[] { URL.class });
// Run projected addURL method to add JAR to classpath
method.setAccessible(true);
method.invoke(cl, new Object[] { cls });
另一种方法是使用Class.forName(name, instantiation, classLoader)
将类添加到类路径(同时也给出类引用)。由于如上所述出现编译器错误(Java 11),我无法应用第一种方法。关于第二种方法,会Class.forName(name, instantiation, classLoader)
将新类附加到 classpath
如果我们像这样调用默认类加载器? :
Class.forName("com.foo.Bar",true, ClassLoader.getSystemClassLoader());
// or:
Class.forName("com.foo.Bar",true, ApiHandler.class.getClassLoader());
这对我不起作用。上述类加载器参数的哪种变体是正确的,为什么这些不起作用?是否必须创建自定义类加载器并将其传递给 Class.forName()
?
3.我正在制作 .java
com.foo
内的文件封装在 src
eclipse 项目的文件夹。他们编译的.class
文件也会在同一文件夹中生成(使用编译器 API)。当我使用 eclipse 刷新项目时(右键单击项目 -> 刷新)相关的 .class
文件将在 target/classes
中生成文件夹中,此时可以通过代码访问类(例如使用 Class.forName("com.foo.Bar)
。如果我在 .class
文件夹中生成 target/classes
文件(通过编译器 API),这些类将无需识别即可识别将它们引入类路径?
更新:
通过保存受人尊敬的.class
,我能够在我的代码中使用编译后的类。文件在 target/classes
项目的上面第三个问题中提到的文件夹。 (通过将 -d
选项添加到编译器的 getTask()
方法中:
Iterable<String> options = Arrays.asList( new String[] { "-d", System.getProperty("user.dir") + "/target/classes/"} );
.
.
.
CompilationTask task = compiler.getTask(null, manager, diagnostics, options, null, sources);
这样,似乎甚至不需要使用 classLoader 将类添加到类路径;因为可以使用简单的 Class.forName()
访问该类。 你如何解释这一点?
Class<?> cls1 = Class.forName("com.foo.Bar");
当然,也可以通过 ClassLoader 方式:
ClassLoader classLoader = ClassLoader.getSystemClassLoader();
Class<?> cls = classLoader.loadClass("com.foo.Bar");
最佳答案
最安全的解决方案是创建一个新的 ClassLoader
实现并通过新的加载器加载生成的类,如this answer所示.
但是从 Java 9 开始,如果尚未定义/加载具有该名称的类,则可以在您自己的上下文中(即在同一包中)定义类。如上所述,这样的类定义甚至可以取代类路径上的定义,只要它尚未加载。因此,不仅后续的 Class.forName(String) 调用将解析为此类定义,甚至非反射引用也会解析为该类定义。
这可以通过以下程序进行演示。
class Dummy { // to make the compiler happy
static native void extensionMethod();
}
public class CompileExtension {
public static void main(String[] args) throws IOException, IllegalAccessException {
// customize these, if you want, null triggers default behavior
DiagnosticListener<JavaFileObject> diagnosticListener = null;
Locale locale = null;
// the actual class implementation, to be present at runtime only
String class1 =
"class Dummy {\n"
+ " static void extensionMethod() {\n"
+ " System.out.println(\"hello from dynamically compiled code\");\n"
+ " }\n"
+ "}";
JavaCompiler c = ToolProvider.getSystemJavaCompiler();
StandardJavaFileManager fm
= c.getStandardFileManager(diagnosticListener, locale, Charset.defaultCharset());
// define where to store compiled class files - use a temporary directory
fm.setLocation(StandardLocation.CLASS_OUTPUT,
Set.of(Files.createTempDirectory("compile-test").toFile()));
JavaCompiler.CompilationTask task = c.getTask(null, fm,
diagnosticListener, Set.of(), Set.of(),
Set.of(new SimpleJavaFileObject(
URI.create("string:///Class1.java"), JavaFileObject.Kind.SOURCE) {
public CharSequence getCharContent(boolean ignoreEncodingErrors) {
return class1;
}
}));
if(task.call()) {
FileObject fo = fm.getJavaFileForInput(
StandardLocation.CLASS_OUTPUT, "Dummy", JavaFileObject.Kind.CLASS);
// these are the class bytes of the first class
byte[] classBytes = Files.readAllBytes(Paths.get(fo.toUri()));
MethodHandles.lookup().defineClass(classBytes);
Dummy.extensionMethod();
}
}
}
Dummy
定义的存在只是为了能够在编译时插入对所需方法的调用,而在运行时,动态定义的类会在方法被调用之前取代它的位置。
但请小心处理。如前所述,自定义类加载器是最安全的解决方案。通常,您应该通过始终存在的接口(interface)创建对扩展的编译时引用,并且仅动态加载实现,可以在运行时将其强制转换为接口(interface),然后通过接口(interface)定义的 API 使用。
关于java - Class.forName(name, instantiation, classLoader) 不会将类添加到类路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56233744/
尝试使用集成到 QTCreator 的表单编辑器,但即使我将插件放入 QtCreator.app/Contents/MacOS/designer 也不会显示。不过,相同的 dylib 文件确实适用于独
在此代码示例中。 “this.method2();”之后会读到什么?在返回returnedValue之前会跳转到method2()吗? public int method1(int returnedV
我的项目有通过gradle配置的依赖项。我想添加以下依赖项: compile group: 'org.restlet.jse', name: 'org.restlet.ext.apispark', v
我将把我们基于 Windows 的客户管理软件移植到基于 Web 的软件。我发现 polymer 可能是一种选择。 但是,对于我们的使用,我们找不到 polymer 组件具有表格 View 、下拉菜单
我的项目文件夹 Project 中有一个文件夹,比如 ED 文件夹,当我在 Eclipse 中指定在哪里查找我写入的文件时 File file = new File("ED/text.txt"); e
这是奇怪的事情,这个有效: $('#box').css({"backgroundPosition": "0px 250px"}); 但这不起作用,它只是不改变位置: $('#box').animate
这个问题在这里已经有了答案: Why does OR 0 round numbers in Javascript? (3 个答案) 关闭 5 年前。 Mozilla JavaScript Guide
这个问题在这里已经有了答案: Is the function strcmpi in the C standard libary of ISO? (3 个答案) 关闭 8 年前。 我有一个问题,为什么
我目前使用的是共享主机方案,我不确定它使用的是哪个版本的 MySQL,但它似乎不支持 DATETIMEOFFSET 类型。 是否存在支持 DATETIMEOFFSET 的 MySQL 版本?或者有计划
研究 Seam 3,我发现 Seam Solder 允许将 @Named 注释应用于包 - 在这种情况下,该包中的所有 bean 都将自动命名,就好像它们符合条件一样@Named 他们自己。我没有看到
我知道 .append 偶尔会增加数组的容量并形成数组的新副本,但 .removeLast 会逆转这种情况并减少容量通过复制到一个新的更小的数组来改变数组? 最佳答案 否(或者至少如果是,则它是一个错
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
noexcept 函数说明符是否旨在 boost 性能,因为生成的对象中可能没有记录异常的代码,因此应尽可能将其添加到函数声明和定义中?我首先想到了可调用对象的包装器,其中 noexcept 可能会产
我正在使用 Angularjs 1.3.7,刚刚发现 Promise.all 在成功响应后不会更新 angularjs View ,而 $q.all 会。由于 Promises 包含在 native
我最近发现了这段JavaScript代码: Math.random() * 0x1000000 10.12345 10.12345 >> 0 10 > 10.12345 >>> 0 10 我使用
我正在编写一个玩具(物理)矢量库,并且遇到了 GHC 坚持认为函数应该具有 Integer 的问题。是他们的类型。我希望向量乘以向量以及标量(仅使用 * ),虽然这可以通过仅使用 Vector 来实现
PHP 的 mail() 函数发送邮件正常,但 Swiftmailer 的 Swift_MailTransport 不起作用! 这有效: mail('user@example.com', 'test
我尝试通过 php 脚本转储我的数据,但没有命令行。所以我用 this script 创建了我的 .sql 文件然后我尝试使用我的脚本: $link = mysql_connect($host, $u
使用 python 2.6.4 中的 sqlite3 标准库,以下查询在 sqlite3 命令行上运行良好: select segmentid, node_t, start, number,title
我最近发现了这段JavaScript代码: Math.random() * 0x1000000 10.12345 10.12345 >> 0 10 > 10.12345 >>> 0 10 我使用
我是一名优秀的程序员,十分优秀!