gpt4 book ai didi

java - Eclipse、Maven 和 JMH : No matching benchmarks

转载 作者:行者123 更新时间:2023-11-30 06:57:18 24 4
gpt4 key购买 nike

我有一个 maven 项目,相关的 pom.xml

<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>0.1</version>
</dependency>

我按照官方的例子here .

我的 App.java 类如下所示:

public class App 
{
@GenerateMicroBenchmark
public void run()
{
System.out.println("Hello World");
}

public static void main( String[] args ) throws RunnerException {
Options opt = new OptionsBuilder()
.include(".*" + App.class.getSimpleName() + ".*")
.forks(1)
.build();

new Runner(opt).run();
}
}

当我通过 Eclipse 运行它时,仍然出现以下错误。没有匹配的基准。拼写错误的正则表达式?使用 -v 进行详细输出。

最佳答案

问题是 JMH 默认情况下会查看目录 /META-INF/MicroBenchmarks 以查找要运行的基准,但 Maven 不会将类编译到该目录。要使其在 Eclipse 中工作,请参阅 this answer .

但是,我建议您直接在命令行上运行基准测试(Eclipse 会增加一些开销)。

我注意到您使用的是 0.1 版,这是 JMH 的第一个版本。最好更新到最新版本。开始使用 JMH 的最佳方法是生成具有原型(prototype) jmh-java-benchmark-archetype 的项目:

$ mvn archetype:generate \
-DinteractiveMode=false \
-DarchetypeGroupId=org.openjdk.jmh \
-DarchetypeArtifactId=jmh-java-benchmark-archetype \
-DgroupId=org.sample \
-DartifactId=jmh-test \
-Dversion=1.0

这将从头开始生成一个 Maven 项目,使用最新的 JMH 版本,预先配置,你不必担心打包。然后,您可以将这个新项目作为现有 Maven 项目导入到 Eclipse 中,并开始编写基准代码。

之后,你只需要运行:

$ cd jmh-test/
$ mvn clean install
$ java -jar target/benchmarks.jar

为了让您快速入门,这里有一个示例基准(什么都不做...)。

import java.util.concurrent.TimeUnit;

import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.BenchmarkMode;
import org.openjdk.jmh.annotations.Fork;
import org.openjdk.jmh.annotations.Measurement;
import org.openjdk.jmh.annotations.Mode;
import org.openjdk.jmh.annotations.OutputTimeUnit;
import org.openjdk.jmh.annotations.Scope;
import org.openjdk.jmh.annotations.State;
import org.openjdk.jmh.annotations.Warmup;

@Warmup(iterations = 5, time = 1000, timeUnit = TimeUnit.MILLISECONDS)
@Measurement(iterations = 10, time = 1000, timeUnit = TimeUnit.MILLISECONDS)
@BenchmarkMode(Mode.AverageTime)
@OutputTimeUnit(TimeUnit.MILLISECONDS)
@Fork(3)
@State(Scope.Benchmark)
public class StreamTest {

@Benchmark
public void benchmark() {
// code here
}

}

关于java - Eclipse、Maven 和 JMH : No matching benchmarks,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33597268/

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