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

org.hibernate.cache.ehcache.internal.EhCacheMessageLogger Maven / Gradle / Ivy

There is a newer version: 6.0.0.Alpha7
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.cache.ehcache.internal;


import org.hibernate.cache.ehcache.ConfigSettings;
import org.hibernate.cache.ehcache.MissingCacheStrategy;
import org.hibernate.internal.CoreMessageLogger;

import org.jboss.logging.Logger;
import org.jboss.logging.annotations.LogMessage;
import org.jboss.logging.annotations.Message;
import org.jboss.logging.annotations.MessageLogger;
import org.jboss.logging.annotations.ValidIdRange;

import static org.jboss.logging.Logger.Level.WARN;

/**
 * The jboss-logging {@link MessageLogger} for the hibernate-ehcache module.  It reserves message ids ranging from
 * 20001 to 20099 (allow 20100 for our DeprecationLogger) inclusively.
 * 

* New messages must be added after the last message defined to ensure message codes are unique. */ @MessageLogger(projectCode = "HHH") @ValidIdRange(min = 20001, max = 20099) public interface EhCacheMessageLogger extends CoreMessageLogger { EhCacheMessageLogger INSTANCE = Logger.getMessageLogger( EhCacheMessageLogger.class, "org.hibernate.orm.cache.ehcache" ); /** * Log a message (WARN) about inability to find configuration file * * @param name The name of the configuration file */ @LogMessage(level = WARN) @Message(value = "Could not find configuration [%s]; using defaults.", id = 20002) void unableToFindConfiguration(String name); /** * Log a message (WARN) about inability to find named cache configuration * * @param name The name of the cache configuration */ @LogMessage(level = WARN) @Message(value = "Could not find a specific ehcache configuration for cache named [%s]; using defaults.", id = 20003) void unableToFindEhCacheConfiguration(String name); /** * Logs a message about not being able to resolve the configuration by resource name. * * @param configurationResourceName The resource name we attempted to resolve */ @LogMessage(level = WARN) @Message( value = "A configurationResourceName was set to %s but the resource could not be loaded from the classpath. " + "Ehcache will configure itself using defaults.", id = 20004 ) void unableToLoadConfiguration(String configurationResourceName); /** * Logs a message (WARN) about attempt to use an incompatible * {@link net.sf.ehcache.config.TerracottaConfiguration.ValueMode}. */ @LogMessage(level = WARN) @Message( value = "The default cache value mode for this Ehcache configuration is \"identity\". " + "This is incompatible with clustered Hibernate caching - the value mode has therefore been " + "switched to \"serialization\"", id = 20005 ) void incompatibleCacheValueMode(); /** * Logs a message (WARN) about attempt to use an incompatible * {@link net.sf.ehcache.config.TerracottaConfiguration.ValueMode}. * * @param cacheName The name of the cache whose config attempted to specify value mode. */ @LogMessage(level = WARN) @Message(value = "The value mode for the cache[%s] is \"identity\". This is incompatible with clustered Hibernate caching - " + "the value mode has therefore been switched to \"serialization\"", id = 20006) void incompatibleCacheValueModePerCache(String cacheName); /** * Log a message (WARN) about an attempt to specify read-only caching for a mutable entity * * @param entityName The name of the entity */ @LogMessage(level = WARN) @Message(value = "read-only cache configured for mutable entity [%s]", id = 20007) void readOnlyCacheConfiguredForMutableEntity(String entityName); /** * Log a message (WARN) about expiry of soft-locked region. * * @param regionName The region name * @param key The cache key * @param lock The lock */ @LogMessage(level = WARN) @Message( value = "Cache[%s] Key[%s] Lockable[%s]\n" + "A soft-locked cache entry was expired by the underlying Ehcache. If this happens regularly you " + "should consider increasing the cache timeouts and/or capacity limits", id = 20008 ) void softLockedCacheExpired(String regionName, Object key, String lock); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy