- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
只是尝试将 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/
只是尝试将 JMH 切换到 swing 的项目中,并在主 POM 中添加以下内容: org.openjdk.jmh jmh-core 1.5
我在一个单独的 Android 应用程序项目中有一个单独的 Android 库。但是我直接链接库(通过路径或生成的 AAR 直接引用库模块)我得到以下错误: A problem was found w
我在尝试构建 ./gradlew clean build 时遇到错误。这是我遇到的错误。 error: cannot generate view binders com.sun.tools.javac
我刚刚使用最新的 REALM 版本制作了一个基本的 Realm 文件,但编译器抛出了这个错误: An exception has occurred in the compiler (1.8.0). P
我将 JDK8 与 IntelliJ IDEA Ultimate 2017.1 一起使用(在我的 Win x64 上试过 - Java 版本 1.8.0_92-windows-x64) 我有一个大型的
我正在尝试使用 findbugs 1.3.2 的注释。 我在一个简单的测试中使用了 edu.umd.cs.findbugs.annotations.NonNull 注释,它工作正常。 但是,现在我有一
我是一名优秀的程序员,十分优秀!