Skip to content

Frequently Asked Questions

Jean Bisutti edited this page Oct 26, 2020 · 17 revisions

On this page, we gather frequently asked questions.

If you don't find the answer to your question, please explore the documentation for a few minutes. You still don't get your answer? Don't hesitate to create a question issue or leave a message on the chat.

General

QuickPerf annotations are not executed

Check that the test is a QuickPerf test.

Global annotations are not executed

Check that the class implementing SpecifiableGlobalAnnotations uses the org.quickperf package.

org.openjdk.jmc:flightrecorder.rules.jdk:pom:7.0.0 not found

πŸ‘‰ Maven

The error message contains Failure to find org.openjdk.jmc:flightrecorder.rules.jdk:pom:7.0.0 in.

Add the https://adoptopenjdk.jfrog.io/adoptopenjdk/jmc-libs repository to the POM file:

<repositories>
        <repository>
            <id>AdoptOpenJDK</id>
            <name>AdoptOpenJDK</name>
            <url>https://adoptopenjdk.jfrog.io/adoptopenjdk/jmc-libs</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
</repositories>

πŸ‘‰ Gradle

Add the https://adoptopenjdk.jfrog.io/adoptopenjdk/jmc-libs repository to the build.gradle file:

repositories {
	mavenCentral()
	maven { url 'https://adoptopenjdk.jfrog.io/adoptopenjdk/jmc-libs' }
} 

JVM

SQL

Annotations

πŸ‘‰ Β Core

πŸ‘‰ Β JVM

πŸ‘‰ Β SQL

πŸ‘‰ Β Scopes

πŸ‘‰ Β Create an annotation

Supported frameworks

πŸ‘‰ Β JUnit 4

πŸ‘‰ Β JUnit 5

πŸ‘‰ Β TestNG

πŸ‘‰ Β Spring

How to

πŸ‘‰ Β Detect and fix N+1 SELECT

Project examples

πŸ‘‰ Β Maven performance

πŸ‘‰ Β Spring Boot - JUnit 4

πŸ‘‰ Β Spring Boot - JUnit 5

πŸ‘‰ Β Micronaut Data - JUnit 5

πŸ‘‰ Β Micronaut - Spring - JUnit 5

πŸ‘‰ Β Quarkus - JUnit 5

Miscellaneous

πŸ‘‰ Β FAQ

πŸ‘‰ Β QuickPerf code

Clone this wiki locally