All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.hibernate.orm.runtime.Hibernate Maven / Gradle / Ivy

There is a newer version: 3.21.0.CR1
Show newest version
package io.quarkus.hibernate.orm.runtime;

import org.jboss.logging.Logger;

public class Hibernate {

    public static void featureInit(boolean enabled) {
        // Override the JPA persistence unit resolver so to use our custom boot
        // strategy:
        PersistenceProviderSetup.registerStaticInitPersistenceProvider();

        if (enabled) {
            Logger.getLogger("org.hibernate.quarkus.feature").debug("Hibernate Features Enabled");
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy