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

org.hibernate.cfg.BytecodeSettings Maven / Gradle / Ivy

There is a newer version: 6.6.2.Final
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html.
 */
package org.hibernate.cfg;

/**
 * Settings which control the {@link org.hibernate.bytecode.spi.BytecodeProvider}
 * used for bytecode enhancement and reflection optimization.
 *
 * @author Steve Ebersole
 */
public interface BytecodeSettings {

	/**
	 * Selects a bytecode enhancement library.
	 * 

* At present only bytebuddy is supported, bytebuddy being the default since version 5.3. * * @settingDefault {@code "bytebuddy"} */ String BYTECODE_PROVIDER = "hibernate.bytecode.provider"; /** * Enable association management feature in runtime bytecode enhancement * * @settingDefault {@code false} */ String ENHANCER_ENABLE_ASSOCIATION_MANAGEMENT = "hibernate.enhancer.enableAssociationManagement"; /** * @deprecated Will be removed without replacement. See HHH-15641 */ @Deprecated(forRemoval = true) @SuppressWarnings("DeprecatedIsStillUsed") String ENHANCER_ENABLE_DIRTY_TRACKING = "hibernate.enhancer.enableDirtyTracking"; /** * @deprecated Will be removed without replacement. See HHH-15641 */ @SuppressWarnings("DeprecatedIsStillUsed") @Deprecated(forRemoval = true) String ENHANCER_ENABLE_LAZY_INITIALIZATION = "hibernate.enhancer.enableLazyInitialization"; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy