Interface Log

All Superinterfaces:
org.jboss.logging.BasicLogger

@MessageLogger(projectCode="HR") public interface Log extends org.jboss.logging.BasicLogger
  • Method Details

    • startHibernateReactive

      @LogMessage(level=INFO) @Message(id=1, value="Hibernate Reactive version %s") void startHibernateReactive(String version)
    • creatingVertxInstance

      @LogMessage(level=INFO) @Message(id=2, value="Vert.x not detected, creating a new instance") void creatingVertxInstance()
    • vertxInstanceStopped

      @LogMessage(level=INFO) @Message(id=3, value="Vert.x instance stopped") void vertxInstanceStopped()
    • sqlClientUrl

      @LogMessage(level=INFO) @Message(id=11, value="SQL Client URL [\u001b[34m%1$s\u001b[0m]") void sqlClientUrl(String url)
    • selectedDriver

      @LogMessage(level=INFO) @Message(id=12, value="Selected driver (\u001b[32m\u2714\u001b[0m) [\u001b[34m%1$s\u001b[0m]") void selectedDriver(String driverName)
    • detectedDriver

      @LogMessage(level=INFO) @Message(id=13, value="Detected driver (\u001b[31m\u2717\u001b[0m) [%1$s]") void detectedDriver(String driverName)
    • preparedStatementCacheDisabled

      @LogMessage(level=INFO) @Message(id=14, value="Prepared statement cache disabled") void preparedStatementCacheDisabled()
    • preparedStatementCacheMaxSize

      @LogMessage(level=INFO) @Message(id=15, value="Prepared statement cache max size: %1$d") void preparedStatementCacheMaxSize(Comparable<Integer> cacheMaxSize)
    • preparedStatementCacheSQLLimit

      @LogMessage(level=INFO) @Message(id=16, value="Prepared statement cache SQL limit: %1$d") void preparedStatementCacheSQLLimit(Integer sqlLimit)
    • sqlClientConfiguration

      @LogMessage(level=INFO) @Message(id=17, value="Using SQL client configuration [%1$s]") void sqlClientConfiguration(String configClassName)
    • instantiatingReactivePool

      @LogMessage(level=INFO) @Message(id=18, value="Instantiating reactive pool: %1$s") void instantiatingReactivePool(@FormatWith(ClassFormatter.class) Class<?> implClass)
    • databaseUsernameNotSpecified

      @Message(id=19, value="database username not specified (set the property \'jakarta.persistence.jdbc.user\', or include it as a parameter in the connection URL)") org.hibernate.HibernateException databaseUsernameNotSpecified()
    • ddlCommandFailed

      @LogMessage(level=WARN) @Message(id=21, value="DDL command failed [%1$s]") void ddlCommandFailed(String message)
    • connectionPoolSize

      @LogMessage(level=INFO) @Message(id=25, value="Connection pool size: %1$d") void connectionPoolSize(int poolSize)
    • connectionPoolMaxWaitSize

      @LogMessage(level=INFO) @Message(id=26, value="Connection pool max wait queue size: %1$d") void connectionPoolMaxWaitSize(Integer maxWaitQueueSize)
    • connectionPoolIdleTimeout

      @LogMessage(level=INFO) @Message(id=27, value="Connection pool idle timeout: %1$d ms") void connectionPoolIdleTimeout(Integer idleTimeout)
    • connectionPoolTimeout

      @LogMessage(level=INFO) @Message(id=28, value="Connection pool connection timeout: %1$d ms") void connectionPoolTimeout(Integer connectTimeout)
    • connectionPoolCleanerPeriod

      @LogMessage(level=INFO) @Message(id=29, value="Connection pool cleaner period: %1$d ms") void connectionPoolCleanerPeriod(Integer poolCleanerPeriod)
    • moreThanOneRowWithTheGivenIdentifier

      @Message(id=31, value="More than one row with the given identifier was found: %1$s, for class: %2$s") org.hibernate.HibernateException moreThanOneRowWithTheGivenIdentifier(Object id, String entityName)
    • couldNotInstantiatePoolConfiguration

      @Message(id=32, value="Could not instantiate SQL client pool configuration [%1$s]") org.hibernate.HibernateException couldNotInstantiatePoolConfiguration(String configClassName, @Cause Throwable error)
    • unableToRetrieveGeneratedProperties

      @Message(id=33, value="Unable to locate row for retrieval of generated properties: %1$s") org.hibernate.HibernateException unableToRetrieveGeneratedProperties(String infoString)
    • noNativelyGeneratedValueReturned

      @Message(id=34, value="The database returned no natively generated identity value") org.hibernate.HibernateException noNativelyGeneratedValueReturned()
    • nativelyGeneratedValueMustBeLong

      @Message(id=35, value="The database can only generate identifiers of type Long") org.hibernate.HibernateException nativelyGeneratedValueMustBeLong()
    • wrongEntityType

      @Message(id=356, value="Wrong entity type!") org.hibernate.HibernateException wrongEntityType()
    • firstOrMaxResultsFailedBecausePaginationOverCollectionIsEnabled

      @Message(id=36, value="firstResult/maxResults specified with collection fetch. In memory pagination was about to be applied. Failing because \'Fail on pagination over collection fetch\' is enabled.") org.hibernate.HibernateException firstOrMaxResultsFailedBecausePaginationOverCollectionIsEnabled()
    • lazyInitializationException

      @Message(id=37, value="Reactive sessions do not support transparent lazy fetching - use Session.fetch() (entity \'%1$s\' with id \'%2$s\' was not loaded)") org.hibernate.LazyInitializationException lazyInitializationException(String entityName, Object id)
    • entityDidNotDefinedNaturalId

      @Message(id=38, value="Entity [%1$s] did not define a natural id") org.hibernate.HibernateException entityDidNotDefinedNaturalId(String entityName)
    • flushDuringCascadeIsDangerous

      @Message(id=39, value="Flush during cascade is dangerous") org.hibernate.HibernateException flushDuringCascadeIsDangerous()
    • immutableNaturalIdentifierAltered

      @Message(id=40, value="An immutable natural identifier of entity %1$s was altered from %2$s to %3$s") org.hibernate.HibernateException immutableNaturalIdentifierAltered(String entityName, String from, String to)
    • identifierAltered

      @Message(id=41, value="Identifier of an instance of %1$s was altered from %2$s to %3$s") org.hibernate.HibernateException identifierAltered(String entityName, Object id, Object oid)
    • mergeRequestedIdNotMatchingIdOfPassedEntity

      @Message(id=42, value="Merge requested with id not matching id of passed entity") org.hibernate.HibernateException mergeRequestedIdNotMatchingIdOfPassedEntity()
    • unableToLocatePersister

      @Message(id=43, value="Unable to locate persister: %1$s") org.hibernate.HibernateException unableToLocatePersister(String persister)
    • invalidLockModeForLock

      @Message(id=44, value="Invalid lock mode for lock()") org.hibernate.HibernateException invalidLockModeForLock()
    • collectionWasEvicted

      @Message(id=45, value="Collection was evicted") org.hibernate.HibernateException collectionWasEvicted()
    • unexpectedBatchSizeSpread

      @Message(id=46, value="Unexpected batch size spread") org.hibernate.HibernateException unexpectedBatchSizeSpread()
    • generatedIdentifierSmallerOrEqualThanZero

      @Message(id=47, value="Generated identifier smaller or equal to 0: %1$d") org.hibernate.HibernateException generatedIdentifierSmallerOrEqualThanZero(Long id)
    • couldNotDetermineDialectFromJdbcDriverMetadata

      @Message(id=48, value="Could not determine Dialect from JDBC driver metadata (specify a connection URI with scheme \'postgresql:\', \'mysql:\', \'cockroachdb\', or \'db2:\')") org.hibernate.HibernateException couldNotDetermineDialectFromJdbcDriverMetadata()
    • couldNotDetermineDialectFromConnectionURI

      @Message(id=49, value="Could not determine Dialect from connection URI: \'%1$s\' (specify a connection URI with scheme \'postgresql:\', \'mysql:\', \'cockroachdb\', or \'db2:\')") org.hibernate.HibernateException couldNotDetermineDialectFromConnectionURI(String url)
    • selectGeneratorIsNotSupportedInHibernateReactive

      @Message(id=50, value="SelectGenerator is not supported in Hibernate Reactive") org.hibernate.HibernateException selectGeneratorIsNotSupportedInHibernateReactive()
    • cannotGenerateIdentifiersOfType

      @Message(id=51, value="Cannot generate identifiers of type %1$S for: %2$s") org.hibernate.HibernateException cannotGenerateIdentifiersOfType(String simpleName, String entityName)
    • generatedIdentifierTooBigForTheField

      @Message(id=52, value="Generated identifier for %1$s too big to be assigned to a field of type %2$s: %3$s") org.hibernate.HibernateException generatedIdentifierTooBigForTheField(String entityName, String simpleName, Long id)
    • couldNotLocateEntityEntryAfterTwoPhaseLoad

      @Message(id=53, value="Could not locate EntityEntry immediately after two-phase load") org.hibernate.HibernateException couldNotLocateEntityEntryAfterTwoPhaseLoad()
    • cannotRecreateCollectionWhileFilterIsEnabled

      @Message(id=54, value="Cannot recreate collection while filter is enabled: %1$s") org.hibernate.HibernateException cannotRecreateCollectionWhileFilterIsEnabled(String collectionInfoString)
    • sessionClosedLazyInitializationException

      @Message(id=55, value="Session closed") org.hibernate.LazyInitializationException sessionClosedLazyInitializationException()
    • collectionCannotBeInitializedlazyInitializationException

      @Message(id=56, value="Collection cannot be initialized: %1$s - Fetch the collection using \'Mutiny.fetch\', \'Stage.fetch\', or \'fetch join\' in HQL") org.hibernate.LazyInitializationException collectionCannotBeInitializedlazyInitializationException(String role)
    • failedToExecuteStatement

      @LogMessage(level=ERROR) @Message(id=57, value="Failed to execute statement [%1$s]: %2$s") void failedToExecuteStatement(String sql, String s, @Cause Throwable t)
    • impossibleFlushModeIllegalState

      @Message(id=58, value="Impossible flush mode") IllegalStateException impossibleFlushModeIllegalState()
    • numberOfResultsGreaterThanBatchedParameters

      @Message(id=59, value="Number of results is greater than number of batched parameters") IllegalStateException numberOfResultsGreaterThanBatchedParameters()
    • sessionIsClosed

      @Message(id=60, value="Session is closed") IllegalStateException sessionIsClosed()
    • sessionIsConnectingToTheDatabase

      @Message(id=61, value="Session is currently connecting to database") IllegalStateException sessionIsConnectingToTheDatabase()
    • updatingImmutableEntityThatsNotInTheSession

      @Message(id=62, value="Updating immutable entity that is not in session yet!") IllegalStateException updatingImmutableEntityThatsNotInTheSession()
    • entityDeleteStateIllegal

      @Message(id=63, value="Entity has status Status.DELETED but values != entry.getDeletedState") IllegalStateException entityDeleteStateIllegal()
    • unexpectedNumberOfReturnedValues

      @Message(id=64, value="Number of return values [%1$s] did not match expected [%2$s]") IllegalStateException unexpectedNumberOfReturnedValues(int length, int size)
    • notVertxContextActive

      @Message(id=65, value="No Vert.x context active") IllegalStateException notVertxContextActive()
    • unknownStructureType

      @Message(id=66, value="Unknown structure type") IllegalStateException unknownStructureType()
    • serviceNotInitialized

      @Message(id=67, value="Service not initialized") IllegalStateException serviceNotInitialized()
    • shouldBeInvokedInVertxEventLoopThread

      @Message(id=68, value="This method should exclusively be invoked from a Vert.x EventLoop thread; currently running on thread \'%1$s\'") IllegalStateException shouldBeInvokedInVertxEventLoopThread(String name)
    • detectedUsedOfTheSessionOnTheWrongThread

      @Message(id=69, value="Detected use of the reactive Session from a different Thread than the one which was used to open the reactive Session - this suggests an invalid integration; original thread [%1$s]: \'%2$s\' current Thread [%3$s]: \'%4$s\'") IllegalStateException detectedUsedOfTheSessionOnTheWrongThread(long expectedThreadId, String expectedThreadName, long currentThreadId, String currentThreadName)
    • unableToLocatePersistenceUnits

      @Message(id=70, value="Unable to locate persistence units") jakarta.persistence.PersistenceException unableToLocatePersistenceUnits(@Cause Throwable e)
    • noNameProvidedAndMultiplePersistenceUnitsFound

      @Message(id=71, value="No name provided and multiple persistence units found") jakarta.persistence.PersistenceException noNameProvidedAndMultiplePersistenceUnitsFound()
    • uninitializedProxyUpdate

      @Message(id=72, value="Cannot update an uninitialized proxy. Make sure to fetch the value before trying to update it: %1$s") org.hibernate.HibernateException uninitializedProxyUpdate(Object entity)
    • invalidIdentifierTypeForCockroachDB

      @Message(id=73, value="%1$s is an invalid identity type when using CockroachDB (entity %2$s) - CockroachDB might generates identifiers that are too big and won\'t always fit in a %1$s. java.lang.Long is valid replacement") org.hibernate.HibernateException invalidIdentifierTypeForCockroachDB(@FormatWith(ClassFormatter.class) Class<?> idType, String entityName)
    • idMustBeAssignedBeforeSave

      @Message(id=74, value="ids for this class must be manually assigned before calling save(): %1$s") org.hibernate.id.IdentifierGenerationException idMustBeAssignedBeforeSave(String entityName)
    • nonReactiveMethodCall

      @Message(id=75, value="Detected call to non reactive method. Alternative reactive method: `%1$s`") org.hibernate.HibernateException nonReactiveMethodCall(String alternativeMethod)
    • notYetImplemented

      @Message(id=76, value="This method has not been implemented yet") org.hibernate.HibernateException notYetImplemented()
    • unableToExecutePostInsertIdSelectionQuery

      @Message(id=77, value="Unable to execute post-insert id selection query: %1$s") org.hibernate.HibernateException unableToExecutePostInsertIdSelectionQuery(String selectSQL, @Cause Throwable e)
    • bindParametersForPostInsertIdSelectQueryError

      @Message(id=78, value="Unable to bind parameters for post-insert id selection query: %1$s") org.hibernate.HibernateException bindParametersForPostInsertIdSelectQueryError(String selectSQL, @Cause Throwable e)
    • blankConnectionString

      @Message(id=79, value="The configuration property \'%1$s\' was not provided, or is in invalid format. This is required when using the default DefaultSqlClientPool: either provide the configuration setting or integrate with a different SqlClientPool implementation") org.hibernate.HibernateException blankConnectionString(String property)
    • noResultException

      @Message(id=80, value="No results were returned by the query (you can try running it with \'.executeUpdate()\'): %1$s") org.hibernate.HibernateException noResultException(String sql)
    • unsupportedXmlType

      @Message(id=81, value="The Vert.x SQL client doesn\'t support the SQL XML data type. If it\'s the mapping of an array, you can also try setting the property `hibernate.type.preferred_array_jdbc_type`") org.hibernate.HibernateException unsupportedXmlType()
    • unexpectedConnectionRequest

      @Message(id=83, value="Unexpected request of a non reactive connection") org.hibernate.HibernateException unexpectedConnectionRequest()
    • notUsingJdbc

      @Message(id=84, value="The application requested a JDBC connection, but Hibernate Reactive doesn\'t use JDBC. This could be caused by a bug or the use of an unsupported feature in Hibernate Reactive") SQLException notUsingJdbc()
    • firstOrMaxResultsSpecifiedWithCollectionFetch

      @LogMessage(level=WARN) @Message(id=104, value="firstResult/maxResults specified with collection fetch; applying in memory!") void firstOrMaxResultsSpecifiedWithCollectionFetch()
    • handlingTransientEntity

      @LogMessage(level=INFO) @Message(id=114, value="Handling transient entity in delete processing") void handlingTransientEntity()
    • needsLimit

      @LogMessage(level=WARN) @Message(id=180, value="FirstResult/maxResults specified on polymorphic query; applying in memory!") void needsLimit()
    • splitQueries

      @LogMessage(level=WARN) @Message(id=245, value="Manipulation query [%s] resulted in [%s] split queries") void splitQueries(String sourceQuery, int length)
    • unableToFindPersistenceXmlInClasspath

      @LogMessage(level=INFO) @Message(value="Could not find any META-INF/persistence.xml file in the classpath", id=318) void unableToFindPersistenceXmlInClasspath()
    • unableToLoadCommand

      @LogMessage(level=INFO) @Message(id=327, value="Error performing load command") void unableToLoadCommand(@Cause org.hibernate.HibernateException e)
    • unableToReleaseCacheLock

      @LogMessage(level=ERROR) @Message(id=353, value="Could not release a cache lock : %s") void unableToReleaseCacheLock(org.hibernate.cache.CacheException ce)
    • replacingDialect

      @LogMessage(level=WARN) @Message(id=400, value="Changing dialect \'%1$s\' to \'%2$s\'") void replacingDialect(org.hibernate.dialect.Dialect from, org.hibernate.dialect.Dialect to)
    • explicitSkipLockedLockCombo

      @LogMessage(level=WARN) @Message(id=447, value="Explicit use of UPGRADE_SKIPLOCKED in lock() calls is not recommended; use normal UPGRADE locking instead") void explicitSkipLockedLockCombo()
    • warningsCreatingTempTable

      @LogMessage(level=WARN) @Message(id=448, value="Warnings creating temp table : %s") void warningsCreatingTempTable(SQLWarning warning)
    • ignoreQueuedOperationsOnMerge

      @LogMessage(level=WARN) @Message(id=494, value="Attempt to merge an uninitialized collection with queued operations; queued operations will be ignored: %s") void ignoreQueuedOperationsOnMerge(String collectionInfoString)
    • jdbcExceptionThrownWithTransactionRolledBack

      @LogMessage(level=DEBUG) @Message(value="JDBCException was thrown for a transaction marked for rollback. This is probably due to an operation failing fast due to the transaction being marked for rollback.", id=520) void jdbcExceptionThrownWithTransactionRolledBack(@Cause org.hibernate.JDBCException e)