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

org.hibernate.ConnectionAcquisitionMode 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 .
 */
package org.hibernate;

import org.hibernate.internal.util.StringHelper;

/**
 * Indicates the manner in which JDBC {@linkplain java.sql.Connection connections}
 * are acquired. Complementary to {@link ConnectionReleaseMode}.
 *
 * @author Steve Ebersole
 *
 * @see org.hibernate.resource.jdbc.spi.PhysicalConnectionHandlingMode
 */
public enum ConnectionAcquisitionMode {
	/**
	 * The {@code Connection} will be acquired as soon as a session is opened.
	 * 

* This circumvents the {@link ConnectionReleaseMode}, as the {@code Connection} * will then be held until the session is closed. */ IMMEDIATELY, /** * A {@code Connection} is acquired only when (and if) it's actually needed. *

* This is the default (and legacy) behavior. */ AS_NEEDED; public static ConnectionAcquisitionMode interpret(String value) { if ( "immediate".equalsIgnoreCase( value ) || "immediately".equalsIgnoreCase( value ) ) { return IMMEDIATELY; } return AS_NEEDED; } public static ConnectionAcquisitionMode interpret(Object setting) { if ( setting == null ) { return null; } if ( setting instanceof ConnectionAcquisitionMode ) { return (ConnectionAcquisitionMode) setting; } final String value = setting.toString(); if ( StringHelper.isEmpty( value ) ) { return null; } return interpret( value ); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy