io.quarkus.jdbc.oracle.runtime.graal.OracleDriverSubstitutions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-jdbc-oracle Show documentation
Show all versions of quarkus-jdbc-oracle Show documentation
Connect to the Oracle database via JDBC
The newest version!
package io.quarkus.jdbc.oracle.runtime.graal;
import com.oracle.svm.core.annotate.Substitute;
import com.oracle.svm.core.annotate.TargetClass;
@TargetClass(className = "oracle.jdbc.driver.OracleDriver")
public final class OracleDriverSubstitutions {
@Substitute
static void unRegisterMBeans() {
//No-op
}
@Substitute
static void registerMBeans() {
//No-op
}
}