gpt4 book ai didi

java - JMH 和 Swing 导致 CompletionFailure

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:21:46 25 4
gpt4 key购买 nike

只是尝试将 JMH 切换到 swing 的项目中,并在主 POM 中添加以下内容:

    <dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>1.5</version>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>1.5</version>
<scope>provided</scope>
</dependency>

和 Alexey 的插件:

        <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<finalName>${artifactId}-with-benchmark</finalName>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>org.openjdk.jmh.Main</mainClass>
</transformer>
</transformers>
<filters>
<filter>
<!--
Shading signed JARs will fail without this.
http://stackoverflow.com/questions/999489/invalid-signature-file-when-attempting-to-run-a-jar
-->
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>

并得到 Maven 的编译器插件错误:

Annotation generator had thrown the exception. com.sun.tools.javac.code.Symbol$CompletionFailure: class file for sun.java2d.pipe.hw.ExtendedBufferCapabilities not found

使用的 Java:

java version "1.8.0_25"
Java(TM) SE Runtime Environment (build 1.8.0_25-b18)
Java HotSpot(TM) 64-Bit Server VM (build 25.25-b02, mixed mode)

有人知道出了什么问题吗?据我所知this bug已经修复了。

应该往哪个方向挖?

最佳答案

谢谢,我相信这是一个 another javac 错误,当 JMH 遍历当前编译 session 中可用的类时出现。虽然正确的修复属于 JDK,但我们可以 work this bug around在 JMH 中,并从这样的失败中恢复过来。该修复程序现在可用于自建的 1.6-SNAPSHOT,并且可能会成为下一个补丁版本 (1.5.1) 的一部分。

关于java - JMH 和 Swing 导致 CompletionFailure,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28165605/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com