Uses of Class
org.hibernate.HibernateException
-
-
Uses of HibernateException in org.hibernate
Subclasses of HibernateException in org.hibernate Modifier and Type Class Description classAnnotationExceptionAnnotation related exception.classCallbackExceptionIntended to be thrown fromLifecycleandInterceptorcallbacks.classDuplicateMappingExceptionRaised whenever a duplicate for a certain type occurs.classHibernateErrorMarks a group of exceptions that generally indicate an internal Hibernate error or bug.classInstantiationExceptionThrown if Hibernate can't instantiate a class at runtime.classInvalidMappingExceptionThrown when a mapping is found to be invalid.classJDBCExceptionWraps aSQLException.classLazyInitializationExceptionIndicates an attempt to access not-yet-fetched data outside of a session context.classMappingExceptionAn exception that occurs while reading mapping sources (xml/annotations), usually as a result of something screwy in the O-R mappings.classMappingNotFoundExceptionDeprecated.UseMappingNotFoundExceptioninstead.classNonUniqueObjectExceptionThis exception is thrown when an operation would break session-scoped identity.classNonUniqueResultExceptionThrown when the application calls Query.uniqueResult() and the query returned more than one result.classObjectDeletedExceptionThrown when the user tries to do something illegal with a deleted object.classObjectNotFoundExceptionThrown when Session.load() fails to select a row with the given primary key (identifier value).classOptimisticLockExceptionDeprecated.UseOptimisticEntityLockExceptioninsteadclassPersistentObjectExceptionThrown when the user passes a persistent instance to a Session method that expects a transient instance.classPessimisticLockExceptionThrown when a pessimistic locking conflict occurs.classPropertyAccessExceptionA problem occurred accessing a property of an instance of a persistent class by reflection, or via enhanced entities.classPropertyNotFoundExceptionIndicates that an expected getter or setter method could not be found on a class.classPropertySetterAccessExceptionclassPropertyValueExceptionThrown when the (illegal) value of a property can not be persisted.classQueryExceptionA problem occurred translating a Hibernate query to SQL due to invalid query syntax, etc.classQueryParameterExceptionParameter invalid or not found in the query.classQueryTimeoutExceptionThrown when a database query timeout occurs.classResourceClosedExceptionIndicates an attempt was made to use a closed resource (Session, SessionFactory, etc).classSessionExceptionThrown when the user calls a method of aSessionthat is in an inappropriate state for the given call (for example, the the session is closed or disconnected).classStaleObjectStateExceptionA specialized StaleStateException that carries information about the particular entity instance that was the source of the failure.classStaleStateExceptionThrown when a version number or timestamp check failed, indicating that the Session contained stale data (when using long transactions with versioning).classTransactionExceptionIndicates that a transaction could not be begun, committed or rolled back.classTransientObjectExceptionThrown when the user passes a transient instance to a Session method that expects a persistent instance.classTransientPropertyValueExceptionThrown when a property cannot be persisted because it is an association with a transient unsaved entity instance.classTypeMismatchExceptionUsed when a user provided type does not match the expected one.classUnknownEntityTypeExceptionIndicates an attempt was made to refer to an unknown entity name/class.classUnknownProfileExceptionUsed to indicate a request against an unknown profile name.classUnresolvableObjectExceptionThrown when Hibernate could not resolve an object by id, especially when loading an association.classUnsupportedLockAttemptExceptionThis exception is thrown when an invalid LockMode is selected for an entity.classWrongClassExceptionThrown when loading an entity (by identifier) results in a value that cannot be treated as the subclass type requested by the caller.Methods in org.hibernate that throw HibernateException Modifier and Type Method Description voidSession. cancelQuery()Cancel the execution of the current query.static voidHibernate. close(Iterator iterator)Close anIteratorinstances obtained fromQuery.iterate()immediately instead of waiting until the session is closed or disconnected.voidSessionFactory. close()Destroy this SessionFactory and release all resources (caches, connection pools, etc).voidSharedSessionContract. close()End the session by releasing the JDBC connection and cleaning up.CriteriaCriteria. createAlias(String associationPath, String alias)Join an association, assigning an alias to the joined association.CriteriaCriteria. createAlias(String associationPath, String alias, int joinType)Deprecated.CriteriaCriteria. createAlias(String associationPath, String alias, int joinType, Criterion withClause)Deprecated.CriteriaCriteria. createAlias(String associationPath, String alias, JoinType joinType)Join an association using the specified join-type, assigning an alias to the joined association.CriteriaCriteria. createAlias(String associationPath, String alias, JoinType joinType, Criterion withClause)Join an association using the specified join-type, assigning an alias to the joined association.CriteriaCriteria. createCriteria(String associationPath)Create a new Criteria, "rooted" at the associated entity.CriteriaCriteria. createCriteria(String associationPath, int joinType)Deprecated.CriteriaCriteria. createCriteria(String associationPath, String alias)Create a new Criteria, "rooted" at the associated entity, assigning the given alias.CriteriaCriteria. createCriteria(String associationPath, String alias, int joinType)Deprecated.CriteriaCriteria. createCriteria(String associationPath, String alias, int joinType, Criterion withClause)CriteriaCriteria. createCriteria(String associationPath, String alias, JoinType joinType)Create a new Criteria, "rooted" at the associated entity, assigning the given alias and using the specified join type.CriteriaCriteria. createCriteria(String associationPath, String alias, JoinType joinType, Criterion withClause)Create a new Criteria, "rooted" at the associated entity, assigning the given alias and using the specified join type.CriteriaCriteria. createCriteria(String associationPath, JoinType joinType)Create a new Criteria, "rooted" at the associated entity, using the specified join type.default <T> TSharedSessionContract. doReturningWork(ReturningWork<T> work)Controller for allowing users to perform JDBC related work using the Connection managed by this Session.default voidSharedSessionContract. doWork(Work work)Controller for allowing users to perform JDBC related work using the Connection managed by this Session.voidSession. flush()Force this session to flush.SessionSessionFactory. getCurrentSession()Obtains the current session.FilterDefinitionSessionFactory. getFilterDefinition(String filterName)Obtain the definition of a filter by name.static voidHibernate. initialize(Object proxy)Force initialization of a proxy or persistent collection.booleanSession. isDirty()Does this session contain any changes which must be synchronized with the database? In other words, would any DML operations be executed if we flushed this session?ListCriteria. list()Get the results.SessionSessionFactory. openSession()Open aSession.voidTransaction. registerSynchronization(Synchronization synchronization)Register a user synchronization callback for this transaction.ScrollableResultsCriteria. scroll()Get the results as an instance ofScrollableResults.ScrollableResultsCriteria. scroll(ScrollMode scrollMode)Get the results as an instance ofScrollableResultsbased on the given scroll mode.CriteriaCriteria. setFetchMode(String associationPath, FetchMode mode)Specify an association fetching strategy for an association or a collection of values.ObjectCriteria. uniqueResult()Convenience method to return a single instance that matches the query, or null if the query returns no results.voidFilter. validate()Perform validation of the filter state. -
Uses of HibernateException in org.hibernate.action.spi
Methods in org.hibernate.action.spi that throw HibernateException Modifier and Type Method Description voidExecutable. beforeExecutions()Called before executing any actions.voidExecutable. execute()Execute this action. -
Uses of HibernateException in org.hibernate.boot
Subclasses of HibernateException in org.hibernate.boot Modifier and Type Class Description classInvalidMappingExceptionclassMappingExceptionIndicates a problem parsing a mapping document.classMappingNotFoundExceptionclassUnsupportedOrmXsdVersionException -
Uses of HibernateException in org.hibernate.boot.archive.spi
Subclasses of HibernateException in org.hibernate.boot.archive.spi Modifier and Type Class Description classArchiveExceptionIndicates a problem accessing or visiting the archive -
Uses of HibernateException in org.hibernate.boot.model.naming
Subclasses of HibernateException in org.hibernate.boot.model.naming Modifier and Type Class Description classIllegalIdentifierExceptionIndicates an attempted use of a name that was deemed illegal -
Uses of HibernateException in org.hibernate.boot.registry.classloading.spi
Subclasses of HibernateException in org.hibernate.boot.registry.classloading.spi Modifier and Type Class Description classClassLoadingExceptionIndicates a problem performing class loading. -
Uses of HibernateException in org.hibernate.boot.registry.selector.spi
Subclasses of HibernateException in org.hibernate.boot.registry.selector.spi Modifier and Type Class Description classStrategySelectionExceptionIndicates a problem performing the selection/resolution. -
Uses of HibernateException in org.hibernate.boot.spi
Subclasses of HibernateException in org.hibernate.boot.spi Modifier and Type Class Description static classInFlightMetadataCollector.DuplicateSecondaryTableException -
Uses of HibernateException in org.hibernate.bytecode.enhance.spi
Subclasses of HibernateException in org.hibernate.bytecode.enhance.spi Modifier and Type Class Description classEnhancementExceptionAn exception indicating some kind of problem performing bytecode enhancement. -
Uses of HibernateException in org.hibernate.bytecode.spi
Subclasses of HibernateException in org.hibernate.bytecode.spi Modifier and Type Class Description classNotInstrumentedExceptionIndicates a condition where an instrumented/enhanced class was expected, but the class was not instrumented/enhanced. -
Uses of HibernateException in org.hibernate.cache
Subclasses of HibernateException in org.hibernate.cache Modifier and Type Class Description classCacheExceptionSomething went wrong in the cacheclassNoCacheRegionFactoryAvailableExceptionIndicates a condition where a second-level cache implementation was expected to be available, but none was found on the classpath. -
Uses of HibernateException in org.hibernate.cache.spi
Methods in org.hibernate.cache.spi that throw HibernateException Modifier and Type Method Description default voidCacheImplementor. evictQueries()Clean up the default query cacheListQueryResultsCache. get(QueryKey key, String[] spaces, Type[] returnTypes, SharedSessionContractImplementor session)Get results from the cache.ListQueryResultsCache. get(QueryKey key, Set<Serializable> spaces, Type[] returnTypes, SharedSessionContractImplementor session)Get results from the cache.default QueryCacheCacheImplementor. getQueryCache(String regionName)Deprecated.UseCacheImplementor.getQueryResultsCache(String)instead, but using unqualified namebooleanQueryResultsCache. put(QueryKey key, List result, Type[] returnTypes, SharedSessionContractImplementor session)Put a result into the query cache. -
Uses of HibernateException in org.hibernate.cache.spi.access
Subclasses of HibernateException in org.hibernate.cache.spi.access Modifier and Type Class Description classUnknownAccessTypeExceptionIndicates that an unknown AccessType external name was encountered or that an AccessType was requested that the underlying cache provider does not support. -
Uses of HibernateException in org.hibernate.cache.spi.entry
Methods in org.hibernate.cache.spi.entry that throw HibernateException Modifier and Type Method Description Object[]StandardCacheEntryImpl. assemble(Object instance, Serializable id, EntityPersister persister, Interceptor interceptor, EventSource session)Assemble the previously disassembled state represented by this entry into the given entity instance.Constructors in org.hibernate.cache.spi.entry that throw HibernateException Constructor Description StandardCacheEntryImpl(Object[] state, EntityPersister persister, Object version, SharedSessionContractImplementor session, Object owner)Constructs a StandardCacheEntryImpl -
Uses of HibernateException in org.hibernate.cfg
Subclasses of HibernateException in org.hibernate.cfg Modifier and Type Class Description classCannotForceNonNullableExceptionIndicates an internal attempt to mark a column as non-nullable (because its part of a PK, etc) but we cannot force that column to be non-nullable.classNotYetImplementedExceptionMapping not yet implementedclassRecoverableExceptionDeprecated.Was only ever referenced in a single place, in an extremely dubious way.Methods in org.hibernate.cfg that throw HibernateException Modifier and Type Method Description SessionFactoryConfiguration. buildSessionFactory()Create aSessionFactoryusing the properties and mappings in this configuration.SessionFactoryConfiguration. buildSessionFactory(ServiceRegistry serviceRegistry)Create aSessionFactoryusing the properties and mappings in this configuration.ConfigurationConfiguration. configure()Use the mappings and properties specified in an application resource named hibernate.cfg.xml.ConfigurationConfiguration. configure(File configFile)Use the mappings and properties specified in the given application file.ConfigurationConfiguration. configure(String resource)Use the mappings and properties specified in the given application resource.ConfigurationConfiguration. configure(URL url)Use the mappings and properties specified in the given document.ConfigurationConfiguration. configure(Document document)Deprecated.No longer supported. -
Uses of HibernateException in org.hibernate.cfg.beanvalidation
Subclasses of HibernateException in org.hibernate.cfg.beanvalidation Modifier and Type Class Description classIntegrationExceptionIndicates a problem integrating Hibernate and the Bean Validation spec. -
Uses of HibernateException in org.hibernate.collection.spi
Methods in org.hibernate.collection.spi that throw HibernateException Modifier and Type Method Description ObjectPersistentCollection. readFrom(ResultSet rs, CollectionPersister role, CollectionAliases descriptor, Object owner)Read a row from the JDBC result setbooleanPersistentCollection. setCurrentSession(SharedSessionContractImplementor session)Associate the collection with the given session. -
Uses of HibernateException in org.hibernate.context
Subclasses of HibernateException in org.hibernate.context Modifier and Type Class Description classTenantIdentifierMismatchExceptionIndicates that tenant identifiers did not match in cases whereCurrentTenantIdentifierResolver.validateExistingCurrentSessions()returnstrueand there is a mismatch found. -
Uses of HibernateException in org.hibernate.context.spi
Methods in org.hibernate.context.spi that throw HibernateException Modifier and Type Method Description SessionCurrentSessionContext. currentSession()Retrieve the current session according to the scoping defined by this implementation. -
Uses of HibernateException in org.hibernate.criterion
Methods in org.hibernate.criterion that throw HibernateException Modifier and Type Method Description String[]CriteriaQuery. findColumns(String propertyPath, Criteria criteria)Get the names of the columns mapped by a property path; if the property path is not found in criteria, try the "outer" query.StringCriteriaQuery. getColumn(Criteria criteria, String propertyPath)Resolve a property path to the name of the column it maps to.String[]CriteriaQuery. getColumns(String propertyPath, Criteria criteria)Resolve a property path to the names of the columns it maps to.String[]CriteriaQuery. getColumnsUsingProjection(Criteria criteria, String propertyPath)Get the names of the columns mapped by a property path.protected QueryableCollectionAbstractEmptinessExpression. getQueryableCollection(String entityName, String propertyName, SessionFactoryImplementor factory)TypeCriteriaQuery. getType(Criteria criteria, String propertyPath)Get the type of a property path.TypedValueCriteriaQuery. getTypedValue(Criteria criteria, String propertyPath, Object value)Build a typed-value for the property/value combo.TypedValue[]AbstractEmptinessExpression. getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)TypedValue[]BetweenExpression. getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)TypedValue[]Criterion. getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)Return typed values for all parameters in the rendered SQL fragmentTypedValue[]Junction. getTypedValues(Criteria crit, CriteriaQuery criteriaQuery)TypedValue[]NaturalIdentifier. getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)TypedValue[]NotExpression. getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)TypedValue[]NotNullExpression. getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)TypedValue[]NullExpression. getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)TypedValue[]SimpleExpression. getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)TypedValue[]SimpleSubqueryExpression. getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)TypedValue[]SizeExpression. getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)TypedValue[]SubqueryExpression. getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)Type[]AggregateProjection. getTypes(Criteria criteria, CriteriaQuery criteriaQuery)Type[]AliasedProjection. getTypes(String alias, Criteria criteria, CriteriaQuery criteriaQuery)Type[]AliasedProjection. getTypes(Criteria criteria, CriteriaQuery criteriaQuery)Type[]Projection. getTypes(String alias, Criteria criteria, CriteriaQuery criteriaQuery)Get the return types for a particular user-visible alias.Type[]Projection. getTypes(Criteria criteria, CriteriaQuery criteriaQuery)Types returned by the rendered SQLfragment.Type[]ProjectionList. getTypes(Criteria criteria, CriteriaQuery criteriaQuery)Type[]PropertyProjection. getTypes(Criteria criteria, CriteriaQuery criteriaQuery)Type[]RowCountProjection. getTypes(Criteria criteria, CriteriaQuery criteriaQuery)TypeCriteriaQuery. getTypeUsingProjection(Criteria criteria, String propertyPath)Get the type of a property path.StringProjection. toGroupSqlString(Criteria criteria, CriteriaQuery criteriaQuery)Render the SQL fragment to be used in the GROUP BY clauseStringProjectionList. toGroupSqlString(Criteria criteria, CriteriaQuery criteriaQuery)StringPropertyProjection. toGroupSqlString(Criteria criteria, CriteriaQuery criteriaQuery)StringAbstractEmptinessExpression. toSqlString(Criteria criteria, CriteriaQuery criteriaQuery)StringAggregateProjection. toSqlString(Criteria criteria, int loc, CriteriaQuery criteriaQuery)StringAliasedProjection. toSqlString(Criteria criteria, int position, CriteriaQuery criteriaQuery)StringBetweenExpression. toSqlString(Criteria criteria, CriteriaQuery criteriaQuery)StringCriterion. toSqlString(Criteria criteria, CriteriaQuery criteriaQuery)Render the SQL fragmentStringJunction. toSqlString(Criteria crit, CriteriaQuery criteriaQuery)StringNaturalIdentifier. toSqlString(Criteria criteria, CriteriaQuery criteriaQuery)StringNotExpression. toSqlString(Criteria criteria, CriteriaQuery criteriaQuery)StringNotNullExpression. toSqlString(Criteria criteria, CriteriaQuery criteriaQuery)StringNullExpression. toSqlString(Criteria criteria, CriteriaQuery criteriaQuery)StringProjection. toSqlString(Criteria criteria, int position, CriteriaQuery criteriaQuery)Render the SQL fragment to be used in the SELECT clause.StringProjectionList. toSqlString(Criteria criteria, int loc, CriteriaQuery criteriaQuery)StringPropertyExpression. toSqlString(Criteria criteria, CriteriaQuery criteriaQuery)StringPropertyProjection. toSqlString(Criteria criteria, int position, CriteriaQuery criteriaQuery)StringRowCountProjection. toSqlString(Criteria criteria, int position, CriteriaQuery criteriaQuery)StringSimpleExpression. toSqlString(Criteria criteria, CriteriaQuery criteriaQuery)StringSizeExpression. toSqlString(Criteria criteria, CriteriaQuery criteriaQuery)StringSubqueryExpression. toSqlString(Criteria criteria, CriteriaQuery criteriaQuery) -
Uses of HibernateException in org.hibernate.dialect
Methods in org.hibernate.dialect that throw HibernateException Modifier and Type Method Description static DialectDialect. getDialect()Deprecated.this static method will be removed.static DialectDialect. getDialect(Properties props)Deprecated.this static method will be removed.StringDialect. getHibernateTypeName(int code)StringDialect. getHibernateTypeName(int code, int length, int precision, int scale)StringDialect. getTypeName(int code)Get the name of the database type associated with the givenTypestypecode.StringDialect. getTypeName(int code, long length, int precision, int scale)Get the name of the database type associated with the givenTypestypecode with the given storage specification parameters.StringTeradata14Dialect. getTypeName(int code, int length, int precision, int scale)Get the name of the database type associated with the given java.sql.Types typecode.StringTeradataDialect. getTypeName(int code, int length, int precision, int scale)Get the name of the database type associated with the given java.sql.Types typecode. -
Uses of HibernateException in org.hibernate.dialect.lock
Subclasses of HibernateException in org.hibernate.dialect.lock Modifier and Type Class Description classLockingStrategyExceptionRepresents an error trying to apply aLockingStrategyto an entityclassOptimisticEntityLockExceptionRepresents an error trying to apply an optimisticLockingStrategyto an entityclassPessimisticEntityLockExceptionRepresents an error trying to apply a pessimisticLockingStrategyto an entity -
Uses of HibernateException in org.hibernate.engine.jdbc.dialect.spi
Methods in org.hibernate.engine.jdbc.dialect.spi that throw HibernateException Modifier and Type Method Description DialectDialectFactory. buildDialect(Map configValues, DialectResolutionInfoSource resolutionInfoSource)Builds an appropriate Dialect instance. -
Uses of HibernateException in org.hibernate.engine.jndi
Subclasses of HibernateException in org.hibernate.engine.jndi Modifier and Type Class Description classJndiExceptionAn exception indicating trouble accessing JNDIclassJndiNameExceptionIndicates a problem with a given JNDI name being deemed as not valid. -
Uses of HibernateException in org.hibernate.engine.query
Subclasses of HibernateException in org.hibernate.engine.query Modifier and Type Class Description classParameterRecognitionExceptionIndicates a problem during parameter recognition viaParamLocationRecognizer -
Uses of HibernateException in org.hibernate.engine.query.spi
Methods in org.hibernate.engine.query.spi that throw HibernateException Modifier and Type Method Description intHQLQueryPlan. performExecuteUpdate(QueryParameters queryParameters, SharedSessionContractImplementor session)Coordinates the efforts to perform an execution across all the included query translators.intNativeSQLQueryPlan. performExecuteUpdate(QueryParameters queryParameters, SharedSessionContractImplementor session)Performs the execute queryIteratorHQLQueryPlan. performIterate(QueryParameters queryParameters, EventSource session)Coordinates the efforts to perform an iterate across all the included query translators.ListHQLQueryPlan. performList(QueryParameters queryParameters, SharedSessionContractImplementor session)Coordinates the efforts to perform a list across all the included query translators.ScrollableResultsImplementorHQLQueryPlan. performScroll(QueryParameters queryParameters, SharedSessionContractImplementor session)Coordinates the efforts to perform a scroll across all the included query translators. -
Uses of HibernateException in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type HibernateException Modifier and Type Method Description RuntimeExceptionExceptionConverter. convert(HibernateException e)Converts a Hibernate-specific exception into a JPA-specified exception; note that the JPA specification makes use of exceptions outside its exception hierarchy, though they are all runtime exceptions.RuntimeExceptionExceptionConverter. convert(HibernateException e, LockOptions lockOptions)Converts a Hibernate-specific exception into a JPA-specified exception; note that the JPA specification makes use of exceptions outside its exception hierarchy, though they are all runtime exceptions.Methods in org.hibernate.engine.spi that throw HibernateException Modifier and Type Method Description CollectionEntryPersistenceContext. addInitializedCollection(CollectionPersister persister, PersistentCollection collection, Serializable id)add a collection we just pulled out of the cache (does not need initializing)voidPersistenceContext. addInitializedDetachedCollection(CollectionPersister collectionPersister, PersistentCollection collection)add an (initialized) collection that was created by another session and passed into update() (ie.voidPersistenceContext. addNewCollection(CollectionPersister persister, PersistentCollection collection)Add a new collection (ie.voidSessionDelegatorBaseImpl. cancelQuery()voidSessionLazyDelegator. cancelQuery()voidCascadingAction. cascade(EventSource session, Object child, String entityName, Object anything, boolean isCascadeDeleteEnabled)Cascade the action to the child object.voidPersistenceContext. checkUniqueness(EntityKey key, Object object)Attempts to check whether the given key represents an entity already loaded within the current session.voidSessionDelegatorBaseImpl. close()voidSessionFactoryDelegatingImpl. close()voidSessionLazyDelegator. close()<T> TSessionDelegatorBaseImpl. doReturningWork(ReturningWork<T> work)<T> TSessionLazyDelegator. doReturningWork(ReturningWork<T> work)voidSessionDelegatorBaseImpl. doWork(Work work)voidSessionLazyDelegator. doWork(Work work)default voidCacheImplementor. evictQueries()Deprecated.Clean up the default query cachevoidActionQueue. executeActions()Perform all currently queued actions.voidActionQueue. executeInserts()Perform all currently queued entity-insertion actions.intSessionDelegatorBaseImpl. executeNativeUpdate(NativeSQLQuerySpecification specification, QueryParameters queryParameters)intSharedSessionContractImplementor. executeNativeUpdate(NativeSQLQuerySpecification specification, QueryParameters queryParameters)Execute a native SQL update or delete queryintSessionDelegatorBaseImpl. executeUpdate(String query, QueryParameters queryParameters)intSharedSessionContractImplementor. executeUpdate(String query, QueryParameters queryParameters)Execute a HQL update or delete queryvoidSessionLazyDelegator. flush()voidSessionDelegatorBaseImpl. forceFlush(EntityEntry e)voidSessionImplementor. forceFlush(EntityEntry e)SessionSessionFactoryDelegatingImpl. getCurrentSession()EntityPersisterSessionDelegatorBaseImpl. getEntityPersister(String entityName, Object object)EntityPersisterSharedSessionContractImplementor. getEntityPersister(String entityName, Object object)Get the EntityPersister for any instanceObjectSessionDelegatorBaseImpl. getEntityUsingInterceptor(EntityKey key)ObjectSharedSessionContractImplementor. getEntityUsingInterceptor(EntityKey key)Get the entity instance associated with the given Key, calling the Interceptor if necessaryFilterDefinitionSessionFactoryDelegatingImpl. getFilterDefinition(String filterName)CollectionCollectionEntry. getOrphans(String entityName, PersistentCollection collection)Get the collection orphans (entities which were removed from the collection)default QueryCacheCacheImplementor. getQueryCache(String regionName)Deprecated.UseCacheImplementor.getQueryResultsCache(String)instead, but using unqualified nameString[]SessionFactoryDelegatingImpl. getReturnAliases(String queryString)Type[]SessionFactoryDelegatingImpl. getReturnTypes(String queryString)StringSessionDelegatorBaseImpl. guessEntityName(Object entity)StringSharedSessionContractImplementor. guessEntityName(Object entity)The guessed entity name for an entity not in an associationObjectSessionDelegatorBaseImpl. immediateLoad(String entityName, Serializable id)ObjectSharedSessionContractImplementor. immediateLoad(String entityName, Serializable id)Load an instance immediately.voidSessionDelegatorBaseImpl. initializeCollection(PersistentCollection collection, boolean writing)voidSharedSessionContractImplementor. initializeCollection(PersistentCollection collection, boolean writing)Initialize the collection (if not already initialized)voidPersistenceContext. initializeNonLazyCollections()Force initialization of all non-lazy collections encountered during the current two-phase load (actually, this is a no-op, unless this is the "outermost" load)ObjectSessionDelegatorBaseImpl. instantiate(String entityName, Serializable id)ObjectSessionDelegatorBaseImpl. instantiate(EntityPersister persister, Serializable id)ObjectSharedSessionContractImplementor. instantiate(String entityName, Serializable id)Instantiate the entity class, initializing with the given identifierObjectSharedSessionContractImplementor. instantiate(EntityPersister persister, Serializable id)Instantiate the entity class of an EntityPersister, initializing with the given identifier.ObjectSessionDelegatorBaseImpl. internalLoad(String entityName, Serializable id, boolean eager, boolean nullable)ObjectSharedSessionContractImplementor. internalLoad(String entityName, Serializable id, boolean eager, boolean nullable)Load an instance without checking if it was deleted.booleanSessionDelegatorBaseImpl. isDirty()booleanSessionLazyDelegator. isDirty()IteratorSessionDelegatorBaseImpl. iterate(String query, QueryParameters queryParameters)IteratorSharedSessionContractImplementor. iterate(String query, QueryParameters queryParameters)Execute an iterate() queryIteratorSessionDelegatorBaseImpl. iterateFilter(Object collection, String filter, QueryParameters queryParameters)IteratorSharedSessionContractImplementor. iterateFilter(Object collection, String filter, QueryParameters queryParameters)Iterate a filterListSessionDelegatorBaseImpl. list(String query, QueryParameters queryParameters)ListSessionDelegatorBaseImpl. list(NativeSQLQuerySpecification spec, QueryParameters queryParameters)ListSharedSessionContractImplementor. list(String query, QueryParameters queryParameters)Execute a find() queryListSharedSessionContractImplementor. list(NativeSQLQuerySpecification spec, QueryParameters queryParameters)Execute a native SQL query, and return the results as a fully built list.ListSessionDelegatorBaseImpl. listCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)ListSharedSessionContractImplementor. listCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)Execute an SQL QueryListSessionDelegatorBaseImpl. listFilter(Object collection, String filter, QueryParameters queryParameters)ListSharedSessionContractImplementor. listFilter(Object collection, String filter, QueryParameters queryParameters)Execute a filtervoidSessionDelegatorBaseImpl. merge(String entityName, Object object, Map copiedAlready)voidSessionImplementor. merge(String entityName, Object object, Map copiedAlready)Deprecated.OperationalContext should cover this overload I believe; Gail?ObjectPersistenceContext. narrowProxy(Object proxy, EntityPersister persister, EntityKey key, Object object)If the existing proxy is insufficiently "narrow" (derived), instantiate a new proxy and overwrite the registration of the old one.SessionSessionFactoryDelegatingImpl. openSession()SessionSessionFactoryDelegatingImpl. openTemporarySession()SessionSessionFactoryImplementor. openTemporarySession()Get a non-transactional "current" session (used by hibernate-envers)voidSessionDelegatorBaseImpl. persist(String entityName, Object object, Map createdAlready)voidSessionImplementor. persist(String entityName, Object object, Map createdAlready)Deprecated.OperationalContext should cover this overload I believe; Gail?voidCollectionEntry. postFlush(PersistentCollection collection)Called after a successful flushvoidCollectionEntry. postInitialize(PersistentCollection collection)voidCollectionEntry. preFlush(PersistentCollection collection)voidActionQueue. prepareActions()Prepares the internal action queues for execution.ObjectPersistenceContext. proxyFor(Object impl)Return the existing proxy associated with the given EntityKey, or the argument (the entity associated with the key) if no proxy exists.ObjectPersistenceContext. proxyFor(EntityPersister persister, EntityKey key, Object impl)Return the existing proxy associated with the given EntityKey, or the third argument (the entity associated with the key) if no proxy exists.voidSessionDelegatorBaseImpl. refresh(String entityName, Object object, Map refreshedAlready)voidSessionImplementor. refresh(String entityName, Object object, Map refreshedAlready)Deprecated.OperationalContext should cover this overload I believe; Gail?ScrollableResultsImplementorSessionDelegatorBaseImpl. scroll(String query, QueryParameters queryParameters)ScrollableResultsImplementorSessionDelegatorBaseImpl. scroll(NativeSQLQuerySpecification spec, QueryParameters queryParameters)ScrollableResultsImplementorSharedSessionContractImplementor. scroll(String query, QueryParameters queryParameters)Execute a scroll() queryScrollableResultsImplementorSessionDelegatorBaseImpl. scrollCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)ScrollableResultsImplementorSharedSessionContractImplementor. scrollCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)Execute an SQL QueryvoidQueryParameters. traceParameters(SessionFactoryImplementor factory)ObjectPersistenceContext. unproxy(Object maybeProxy)Get the entity instance underlying the given proxy, throwing an exception if the proxy is uninitialized.ObjectPersistenceContext. unproxyAndReassociate(Object maybeProxy)Possibly unproxy the given reference and reassociate it with the current session. -
Uses of HibernateException in org.hibernate.engine.transaction.jta.platform.spi
Subclasses of HibernateException in org.hibernate.engine.transaction.jta.platform.spi Modifier and Type Class Description classJtaPlatformExceptionIndicates a problem interacting with the underlying JTA platform. -
Uses of HibernateException in org.hibernate.engine.transaction.spi
Methods in org.hibernate.engine.transaction.spi that throw HibernateException Modifier and Type Method Description <T> TIsolationDelegate. delegateCallable(Callable<T> callable, boolean transacted)Invoke the given callable in isolation from current transaction.<T> TIsolationDelegate. delegateWork(WorkExecutorVisitable<T> work, boolean transacted)Perform the given work in isolation from current transaction. -
Uses of HibernateException in org.hibernate.event.service.spi
Subclasses of HibernateException in org.hibernate.event.service.spi Modifier and Type Class Description classEventListenerRegistrationExceptionIndicates a problem registering an event listener. -
Uses of HibernateException in org.hibernate.event.spi
Methods in org.hibernate.event.spi that throw HibernateException Modifier and Type Method Description voidEventSource. forceFlush(EntityEntry e)Force an immediate flushObjectEventSource. instantiate(EntityPersister persister, Serializable id)Instantiate an entity instance, using either an interceptor, or the given persistervoidEventSource. merge(String entityName, Object object, Map copiedAlready)Cascade merge an entity instancevoidAutoFlushEventListener. onAutoFlush(AutoFlushEvent event)Handle the given auto-flush event.voidDeleteEventListener. onDelete(DeleteEvent event)Handle the given delete event.voidDeleteEventListener. onDelete(DeleteEvent event, Set transientEntities)voidDirtyCheckEventListener. onDirtyCheck(DirtyCheckEvent event)Handle the given dirty-check event.voidEvictEventListener. onEvict(EvictEvent event)Handle the given evict event.voidFlushEventListener. onFlush(FlushEvent event)Handle the given flush event.voidFlushEntityEventListener. onFlushEntity(FlushEntityEvent event)voidInitializeCollectionEventListener. onInitializeCollection(InitializeCollectionEvent event)voidLoadEventListener. onLoad(LoadEvent event, LoadEventListener.LoadType loadType)Handle the given load event.voidLockEventListener. onLock(LockEvent event)Handle the given lock event.voidMergeEventListener. onMerge(MergeEvent event)Handle the given merge event.voidMergeEventListener. onMerge(MergeEvent event, Map copiedAlready)Handle the given merge event.voidPersistEventListener. onPersist(PersistEvent event)Handle the given create event.voidPersistEventListener. onPersist(PersistEvent event, Map createdAlready)Handle the given create event.voidRefreshEventListener. onRefresh(RefreshEvent event)Handle the given refresh event.voidRefreshEventListener. onRefresh(RefreshEvent event, Map refreshedAlready)voidReplicateEventListener. onReplicate(ReplicateEvent event)Handle the given replicate event.voidResolveNaturalIdEventListener. onResolveNaturalId(ResolveNaturalIdEvent event)Handle the given resolve natural id event.voidSaveOrUpdateEventListener. onSaveOrUpdate(SaveOrUpdateEvent event)Handle the given update event.voidEventSource. persist(String entityName, Object object, Map createdAlready)Cascade persist an entity instancevoidEventSource. refresh(String entityName, Object object, Map refreshedAlready)Cascade refresh an entity instance -
Uses of HibernateException in org.hibernate.exception
Subclasses of HibernateException in org.hibernate.exception Modifier and Type Class Description classConstraintViolationExceptionImplementation of JDBCException indicating that the requested DML operation resulted in a violation of a defined integrity constraint.classDataExceptionImplementation of JDBCException indicating that evaluation of the valid SQL statement against the given data resulted in some illegal operation, mismatched types or incorrect cardinality.classGenericJDBCExceptionGeneric, non-specific JDBCException.classJDBCConnectionExceptionImplementation of JDBCException indicating problems with communicating with the database (can also include incorrect JDBC setup).classLockAcquisitionExceptionImplementation of JDBCException indicating a problem acquiring lock on the database.classLockTimeoutExceptionclassSQLGrammarExceptionImplementation of JDBCException indicating that the SQL sent to the database server was invalid (syntax error, invalid object references, etc). -
Uses of HibernateException in org.hibernate.exception.spi
Methods in org.hibernate.exception.spi that throw HibernateException Modifier and Type Method Description static SQLExceptionConverterSQLExceptionConverterFactory. buildSQLExceptionConverter(Dialect dialect, Properties properties)Build a SQLExceptionConverter instance.voidConfigurable. configure(Properties properties)Configure the component, using the given settings and properties. -
Uses of HibernateException in org.hibernate.graph
Subclasses of HibernateException in org.hibernate.graph Modifier and Type Class Description classCannotBecomeEntityGraphExceptionIndicates an illegal attempt to make aGraphbecome anEntityGraphviaGraph.makeRootGraph(String, boolean).classCannotContainSubGraphExceptionIndicates an attempt was made to add a (key)? sub-graph to an attribute type that does not support (key)? sub-graphs.classInvalidGraphExceptionThrown byGraphParserto indicate textual entity graph representation parsing errors. -
Uses of HibernateException in org.hibernate.hql.spi
Methods in org.hibernate.hql.spi that throw HibernateException Modifier and Type Method Description intQueryTranslator. executeUpdate(QueryParameters queryParameters, SharedSessionContractImplementor session)Perform a bulk update/delete operation given the underlying query definition.IteratorQueryTranslator. iterate(QueryParameters queryParameters, EventSource session)Perform an iterate operation given the underlying query definition.ListQueryTranslator. list(SharedSessionContractImplementor session, QueryParameters queryParameters)Perform a list operation given the underlying query definition.ScrollableResultsImplementorQueryTranslator. scroll(QueryParameters queryParameters, SharedSessionContractImplementor session)Perform a scroll operation given the underlying query definition.voidQueryTranslator. validateScrollability()Validate the scrollability of the translated query. -
Uses of HibernateException in org.hibernate.id
Subclasses of HibernateException in org.hibernate.id Modifier and Type Class Description classIdentifierGenerationExceptionThrown by IdentifierGenerator implementation class when ID generation fails. -
Uses of HibernateException in org.hibernate.id.enhanced
Methods in org.hibernate.id.enhanced that throw HibernateException Modifier and Type Method Description SerializableSequenceStyleGenerator. generate(SharedSessionContractImplementor session, Object object) -
Uses of HibernateException in org.hibernate.jdbc
Subclasses of HibernateException in org.hibernate.jdbc Modifier and Type Class Description classBatchedTooManyRowsAffectedExceptionMuch likeTooManyRowsAffectedException, indicates that more rows than what we were expecting were affected.classBatchFailedExceptionIndicates a failed batch entry (-3 return).classTooManyRowsAffectedExceptionIndicates that more rows were affected then we were expecting to be.Methods in org.hibernate.jdbc that throw HibernateException Modifier and Type Method Description intExpectation. prepare(PreparedStatement statement)Perform any special statement preparation.intExpectations.BasicExpectation. prepare(PreparedStatement statement)intExpectations.BasicParamExpectation. prepare(PreparedStatement statement)voidExpectation. verifyOutcome(int rowCount, PreparedStatement statement, int batchPosition, String statementSQL)Perform verification of the outcome of the RDBMS operation based on the type of expectation defined. -
Uses of HibernateException in org.hibernate.loader
Subclasses of HibernateException in org.hibernate.loader Modifier and Type Class Description classMultipleBagFetchExceptionException used to indicate that a query is attempting to simultaneously fetch multiplebagsMethods in org.hibernate.loader that throw HibernateException Modifier and Type Method Description protected StringLoader. applyLocks(String sql, QueryParameters parameters, Dialect dialect, List<AfterLoadAction> afterLoadActions)Append FOR UPDATE OF clause, if necessary.protected intLoader. bindNamedParameters(PreparedStatement statement, Map<String,TypedValue> namedParams, int startIndex, SharedSessionContractImplementor session)Bind named parameters to the JDBC prepared statement.protected intLoader. bindPositionalParameters(PreparedStatement statement, QueryParameters queryParameters, int startIndex, SharedSessionContractImplementor session)Bind positional parameter values to the JDBC prepared statement.protected PreparedStatementLoader. bindPreparedStatement(PreparedStatement st, QueryParameters queryParameters, LimitHandler limitHandler, SharedSessionContractImplementor session)protected voidLoader. checkScrollability()Check whether the current loader can support returning ScrollableResults.protected ListLoader. doList(SharedSessionContractImplementor session, QueryParameters queryParameters)Actually execute a query, ignoring the query cacheListLoader. doQueryAndInitializeNonLazyCollections(SharedSessionContractImplementor session, QueryParameters queryParameters, boolean returnProxies)Execute an SQL query and attempt to instantiate instances of the class mapped by the given persister from each row of the ResultSet.ListLoader. doQueryAndInitializeNonLazyCollections(SharedSessionContractImplementor session, QueryParameters queryParameters, boolean returnProxies, ResultTransformer forcedResultTransformer)protected ObjectLoader. getResultColumnOrRow(Object[] row, ResultTransformer transformer, ResultSet rs, SharedSessionContractImplementor session)Get the actual object that is returned in the user-visible result list.protected Object[]Loader. getResultRow(Object[] row, ResultSet rs, SharedSessionContractImplementor session)protected ResultSetLoader. getResultSet(CallableStatement st, RowSelection selection, LimitHandler limitHandler, boolean autodiscovertypes, SharedSessionContractImplementor session)Execute given CallableStatement, advance to the first result and return SQL ResultSet.protected ResultSetLoader. getResultSet(PreparedStatement st, RowSelection selection, LimitHandler limitHandler, boolean autodiscovertypes, SharedSessionContractImplementor session)Execute given PreparedStatement, advance to the first result and return SQL ResultSet.protected voidLoader. instanceAlreadyLoaded(ResultSet rs, int i, Loadable persister, EntityKey key, Object object, LockMode requestedLockMode, List hydratedObjects, SharedSessionContractImplementor session)The entity instance is already in the session cacheprotected ObjectLoader. instanceNotYetLoaded(ResultSet rs, int i, Loadable persister, String rowIdAlias, EntityKey key, LockMode lockMode, EntityKey optionalObjectKey, Object optionalObject, List hydratedObjects, SharedSessionContractImplementor session)The entity instance is not in the session cacheprotected ListLoader. list(SharedSessionContractImplementor session, QueryParameters queryParameters, Set<Serializable> querySpaces, Type[] resultTypes)Return the query results, using the query cache, called by subclasses that implement cacheable queriesvoidLoader. loadCollection(SharedSessionContractImplementor session, Serializable id, Type type)Called by subclasses that initialize collectionsvoidLoader. loadCollectionBatch(SharedSessionContractImplementor session, Serializable[] ids, Type type)Called by wrappers that batch initialize collectionsprotected voidLoader. loadCollectionSubselect(SharedSessionContractImplementor session, Serializable[] ids, Object[] parameterValues, Type[] parameterTypes, Map<String,TypedValue> namedParameters, Type type)Called by subclasses that batch initialize collectionsprotected ListLoader. loadEntity(SharedSessionContractImplementor session, Object key, Object index, Type keyType, Type indexType, EntityPersister persister)Called by subclasses that load entitiesprotected ListLoader. loadEntity(SharedSessionContractImplementor session, Object id, Type identifierType, Object optionalObject, String optionalEntityName, Serializable optionalIdentifier, EntityPersister persister, LockOptions lockOptions, Boolean readOnly)Called by subclasses that load entitiesListLoader. loadEntityBatch(SharedSessionContractImplementor session, Serializable[] ids, Type idType, Object optionalObject, String optionalEntityName, Serializable optionalId, EntityPersister persister, LockOptions lockOptions)Called by wrappers that batch load entitiesListLoader. loadEntityBatch(SharedSessionContractImplementor session, Serializable[] ids, Type idType, Object optionalObject, String optionalEntityName, Serializable optionalId, EntityPersister persister, LockOptions lockOptions, Boolean readOnly)Called by wrappers that batch load entitiesObjectLoader. loadSequentialRowsForward(ResultSet resultSet, SharedSessionContractImplementor session, QueryParameters queryParameters, boolean returnProxies)Loads a single logical row from the result set moving forward.ObjectLoader. loadSequentialRowsReverse(ResultSet resultSet, SharedSessionContractImplementor session, QueryParameters queryParameters, boolean returnProxies, boolean isLogicallyAfterLast)Loads a single logical row from the result set moving forward.ObjectLoader. loadSingleRow(ResultSet resultSet, SharedSessionContractImplementor session, QueryParameters queryParameters, boolean returnProxies)Loads a single row from the result set.protected PreparedStatementLoader. prepareQueryStatement(String sql, QueryParameters queryParameters, LimitHandler limitHandler, boolean scroll, SharedSessionContractImplementor session)Obtain a PreparedStatement with all parameters pre-bound.protected ResultSetLoader. preprocessResultSet(ResultSet rs, RowSelection selection, LimitHandler limitHandler, boolean autodiscovertypes, SharedSessionContractImplementor session)protected StringLoader. preprocessSQL(String sql, QueryParameters parameters, SessionFactoryImplementor sessionFactory, List<AfterLoadAction> afterLoadActions)Modify the SQL, adding lock hints and comments, if necessaryprotected ScrollableResultsImplementorLoader. scroll(QueryParameters queryParameters, Type[] returnTypes, org.hibernate.hql.internal.HolderInstantiator holderInstantiator, SharedSessionContractImplementor session)Return the query results, as an instance of ScrollableResults -
Uses of HibernateException in org.hibernate.loader.collection
Methods in org.hibernate.loader.collection that throw HibernateException Modifier and Type Method Description voidCollectionInitializer. initialize(Serializable id, SharedSessionContractImplementor session)Initialize the given collectionvoidCollectionLoader. initialize(Serializable id, SharedSessionContractImplementor session)voidDynamicBatchingCollectionInitializerBuilder.DynamicBatchingCollectionInitializer. initialize(Serializable id, SharedSessionContractImplementor session)voidLegacyBatchingCollectionInitializerBuilder.LegacyBatchingCollectionInitializer. initialize(Serializable id, SharedSessionContractImplementor session)voidSubselectCollectionLoader. initialize(Serializable id, SharedSessionContractImplementor session)voidSubselectOneToManyLoader. initialize(Serializable id, SharedSessionContractImplementor session) -
Uses of HibernateException in org.hibernate.loader.collection.plan
Methods in org.hibernate.loader.collection.plan that throw HibernateException Modifier and Type Method Description voidAbstractLoadPlanBasedCollectionInitializer. initialize(Serializable id, SharedSessionContractImplementor session)voidLegacyBatchingCollectionInitializerBuilder.LegacyBatchingCollectionInitializer. initialize(Serializable id, SharedSessionContractImplementor session) -
Uses of HibernateException in org.hibernate.loader.criteria
Methods in org.hibernate.loader.criteria that throw HibernateException Modifier and Type Method Description String[]CriteriaQueryTranslator. findColumns(String propertyName, Criteria subcriteria)Get the names of the columns mapped by a property path; if the property path is not found in subcriteria, try the "outer" query.String[]CriteriaQueryTranslator. getColumns(String propertyName, Criteria subcriteria)String[]CriteriaQueryTranslator. getColumnsUsingProjection(Criteria subcriteria, String propertyName)Get the names of the columns constrained by this criterion.protected ObjectCriteriaLoader. getResultColumnOrRow(Object[] row, ResultTransformer transformer, ResultSet rs, SharedSessionContractImplementor session)protected Object[]CriteriaLoader. getResultRow(Object[] row, ResultSet rs, SharedSessionContractImplementor session)TypeCriteriaQueryTranslator. getType(Criteria subcriteria, String propertyName)TypedValueCriteriaQueryTranslator. getTypedValue(Criteria subcriteria, String propertyName, Object value)Get the typed value for the given property value.TypeCriteriaQueryTranslator. getTypeUsingProjection(Criteria subcriteria, String propertyName)ListCriteriaLoader. list(SharedSessionContractImplementor session)ScrollableResultsImplementorCriteriaLoader. scroll(SharedSessionContractImplementor session, ScrollMode scrollMode)Constructors in org.hibernate.loader.criteria that throw HibernateException Constructor Description CriteriaLoader(OuterJoinLoadable persister, SessionFactoryImplementor factory, org.hibernate.internal.CriteriaImpl criteria, String rootEntityName, LoadQueryInfluencers loadQueryInfluencers)CriteriaQueryTranslator(SessionFactoryImplementor factory, org.hibernate.internal.CriteriaImpl criteria, String rootEntityName, String rootSQLAlias)CriteriaQueryTranslator(SessionFactoryImplementor factory, org.hibernate.internal.CriteriaImpl criteria, String rootEntityName, String rootSQLAlias, CriteriaQuery outerQuery) -
Uses of HibernateException in org.hibernate.loader.custom
Subclasses of HibernateException in org.hibernate.loader.custom Modifier and Type Class Description classNonUniqueDiscoveredSqlAliasException -
Uses of HibernateException in org.hibernate.loader.custom.sql
Constructors in org.hibernate.loader.custom.sql that throw HibernateException Constructor Description SQLCustomQuery(String sqlQuery, NativeSQLQueryReturn[] queryReturns, Collection additionalQuerySpaces, SessionFactoryImplementor factory) -
Uses of HibernateException in org.hibernate.loader.entity
-
Uses of HibernateException in org.hibernate.loader.entity.plan
Methods in org.hibernate.loader.entity.plan that throw HibernateException Modifier and Type Method Description ObjectAbstractLoadPlanBasedEntityLoader. load(Serializable id, Object optionalObject, SharedSessionContractImplementor session)ObjectAbstractLoadPlanBasedEntityLoader. load(Serializable id, Object optionalObject, SharedSessionContractImplementor session, Boolean readOnly)ListAbstractLoadPlanBasedEntityLoader. loadEntityBatch(SharedSessionContractImplementor session, Serializable[] ids, Type idType, Object optionalObject, String optionalEntityName, Serializable optionalId, EntityPersister persister, LockOptions lockOptions)Called by wrappers that batch load entitiesListAbstractLoadPlanBasedEntityLoader. loadEntityBatch(SharedSessionContractImplementor session, Serializable[] ids, Type idType, Object optionalObject, String optionalEntityName, Serializable optionalId, EntityPersister persister, LockOptions lockOptions, Boolean readOnly) -
Uses of HibernateException in org.hibernate.loader.hql
Methods in org.hibernate.loader.hql that throw HibernateException Modifier and Type Method Description protected ObjectQueryLoader. getResultColumnOrRow(Object[] row, ResultTransformer transformer, ResultSet rs, SharedSessionContractImplementor session)protected Object[]QueryLoader. getResultRow(Object[] row, ResultSet rs, SharedSessionContractImplementor session)IteratorQueryLoader. iterate(QueryParameters queryParameters, EventSource session)ListQueryLoader. list(SharedSessionContractImplementor session, QueryParameters queryParameters)ScrollableResultsImplementorQueryLoader. scroll(QueryParameters queryParameters, SharedSessionContractImplementor session)voidQueryLoader. validateScrollability() -
Uses of HibernateException in org.hibernate.loader.plan.spi
Subclasses of HibernateException in org.hibernate.loader.plan.spi Modifier and Type Class Description classQuerySpaceUidNotRegisteredExceptionIndicates an attempt to lookup a QuerySpace by its uid, when no registration has been made under that uid. -
Uses of HibernateException in org.hibernate.mapping
Methods in org.hibernate.mapping that throw HibernateException Modifier and Type Method Description StringColumn. getSqlType(Dialect dialect, Mapping mapping)Iterator<String>Table. sqlAlterStrings(Dialect dialect, Metadata metadata, TableInformation tableInfo, SqlStringGenerationContext sqlStringGenerationContext)StringIndex. sqlCreateString(Mapping mapping, SqlStringGenerationContext context, String defaultCatalog, String defaultSchema)default StringRelationalModel. sqlCreateString(Dialect dialect, Mapping p, String defaultCatalog, String defaultSchema)Deprecated.StringRelationalModel. sqlCreateString(Mapping p, SqlStringGenerationContext context, String defaultCatalog, String defaultSchema)Deprecated.default StringRelationalModel. sqlDropString(Dialect dialect, String defaultCatalog, String defaultSchema)Deprecated. -
Uses of HibernateException in org.hibernate.metadata
Methods in org.hibernate.metadata that throw HibernateException Modifier and Type Method Description SerializableClassMetadata. getIdentifier(Object object)Deprecated.TypeClassMetadata. getPropertyType(String propertyName)Get the type of a particular (named) propertyObjectClassMetadata. getPropertyValue(Object object, String propertyName)Get the value of a particular (named) propertyObject[]ClassMetadata. getPropertyValues(Object entity)Extract the property values from the given entity.default Object[]ClassMetadata. getPropertyValuesToInsert(Object entity, Map mergeMap, SessionImplementor session)Deprecated.(since 5.3) Use the form accepting SharedSessionContractImplementor insteadObject[]ClassMetadata. getPropertyValuesToInsert(Object entity, Map mergeMap, SharedSessionContractImplementor session)Return the values of the mapped properties of the objectObjectClassMetadata. getVersion(Object object)Get the version number (or timestamp) from the object's version property (or return null if not versioned)voidClassMetadata. setPropertyValue(Object object, String propertyName, Object value)Set the value of a particular (named) propertyvoidClassMetadata. setPropertyValues(Object object, Object[] values)Set the given values to the mapped properties of the given object -
Uses of HibernateException in org.hibernate.metamodel.model.domain
Methods in org.hibernate.metamodel.model.domain that throw HibernateException Modifier and Type Method Description default booleanBasicDomainType. areEqual(J x, J y) -
Uses of HibernateException in org.hibernate.persister.collection
Methods in org.hibernate.persister.collection that throw HibernateException Modifier and Type Method Description voidAbstractCollectionPersister. deleteRows(PersistentCollection collection, Serializable id, SharedSessionContractImplementor session)voidCollectionPersister. deleteRows(PersistentCollection collection, Serializable key, SharedSessionContractImplementor session)Delete the persistent state of any elements that were removed from the collectionprotected voidAbstractCollectionPersister. doProcessQueuedOps(PersistentCollection collection, Serializable key, int nextIndex, SharedSessionContractImplementor session)protected abstract voidAbstractCollectionPersister. doProcessQueuedOps(PersistentCollection collection, Serializable key, SharedSessionContractImplementor session)protected voidOneToManyPersister. doProcessQueuedOps(PersistentCollection collection, Serializable id, SharedSessionContractImplementor session)protected abstract intAbstractCollectionPersister. doUpdateRows(Serializable key, PersistentCollection collection, SharedSessionContractImplementor session)protected intBasicCollectionPersister. doUpdateRows(Serializable id, PersistentCollection collection, SharedSessionContractImplementor session)voidAbstractCollectionPersister. initialize(Serializable key, SharedSessionContractImplementor session)voidCollectionPersister. initialize(Serializable key, SharedSessionContractImplementor session)Initialize the given collection with the given key TODO: add owner argument!!voidNamedQueryCollectionInitializer. initialize(Serializable key, SharedSessionContractImplementor session)voidAbstractCollectionPersister. insertRows(PersistentCollection collection, Serializable id, SharedSessionContractImplementor session)voidCollectionPersister. insertRows(PersistentCollection collection, Serializable key, SharedSessionContractImplementor session)Insert the persistent state of any new collection elementsvoidOneToManyPersister. insertRows(PersistentCollection collection, Serializable id, SharedSessionContractImplementor session)voidAbstractCollectionPersister. processQueuedOps(PersistentCollection collection, Serializable key, SharedSessionContractImplementor session)voidCollectionPersister. processQueuedOps(PersistentCollection collection, Serializable key, SharedSessionContractImplementor session)Process queued operations within the PersistentCollection.ObjectAbstractCollectionPersister. readElement(ResultSet rs, Object owner, String[] aliases, SharedSessionContractImplementor session)ObjectCollectionPersister. readElement(ResultSet rs, Object owner, String[] columnAliases, SharedSessionContractImplementor session)Read the element from a row of the JDBC ResultSetObjectAbstractCollectionPersister. readIdentifier(ResultSet rs, String alias, SharedSessionContractImplementor session)ObjectCollectionPersister. readIdentifier(ResultSet rs, String columnAlias, SharedSessionContractImplementor session)Read the identifier from a row of the JDBC ResultSetObjectAbstractCollectionPersister. readIndex(ResultSet rs, String[] aliases, SharedSessionContractImplementor session)ObjectCollectionPersister. readIndex(ResultSet rs, String[] columnAliases, SharedSessionContractImplementor session)Read the index from a row of the JDBC ResultSetObjectAbstractCollectionPersister. readKey(ResultSet rs, String[] aliases, SharedSessionContractImplementor session)ObjectCollectionPersister. readKey(ResultSet rs, String[] keyAliases, SharedSessionContractImplementor session)Read the key from a row of the JDBC ResultSetvoidAbstractCollectionPersister. recreate(PersistentCollection collection, Serializable id, SharedSessionContractImplementor session)voidCollectionPersister. recreate(PersistentCollection collection, Serializable key, SharedSessionContractImplementor session)(Re)create the collection's persistent statevoidOneToManyPersister. recreate(PersistentCollection collection, Serializable id, SharedSessionContractImplementor session)voidAbstractCollectionPersister. remove(Serializable id, SharedSessionContractImplementor session)voidCollectionPersister. remove(Serializable id, SharedSessionContractImplementor session)Completely remove the persistent state of the collectionvoidAbstractCollectionPersister. updateRows(PersistentCollection collection, Serializable id, SharedSessionContractImplementor session)voidCollectionPersister. updateRows(PersistentCollection collection, Serializable key, SharedSessionContractImplementor session)Update the persistent state of any elements that were modifiedprotected intAbstractCollectionPersister. writeElement(PreparedStatement st, Object elt, int i, SharedSessionContractImplementor session)Write the element to a JDBC PreparedStatementprotected intAbstractCollectionPersister. writeElementToWhere(PreparedStatement st, Object elt, int i, SharedSessionContractImplementor session)Write the element to a JDBC PreparedStatementintAbstractCollectionPersister. writeIdentifier(PreparedStatement st, Object id, int i, SharedSessionContractImplementor session)Write the identifier to a JDBC PreparedStatementprotected intAbstractCollectionPersister. writeIndex(PreparedStatement st, Object index, int i, SharedSessionContractImplementor session)Write the index to a JDBC PreparedStatementprotected intAbstractCollectionPersister. writeIndexToWhere(PreparedStatement st, Object index, int i, SharedSessionContractImplementor session)Write the index to a JDBC PreparedStatementprotected intAbstractCollectionPersister. writeKey(PreparedStatement st, Serializable key, int i, SharedSessionContractImplementor session)Write the key to a JDBC PreparedStatement -
Uses of HibernateException in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity that throw HibernateException Modifier and Type Method Description protected booleanAbstractEntityPersister. check(int rows, Serializable id, int tableNumber, Expectation expectation, PreparedStatement statement, String statementSQL)ObjectAbstractEntityPersister. createProxy(Serializable id, SharedSessionContractImplementor session)ObjectEntityPersister. createProxy(Serializable id, SharedSessionContractImplementor session)Create a new proxy instanceObjectDiscriminatorType. deepCopy(Object value, SessionFactoryImplementor factory)intAbstractEntityPersister. dehydrate(Serializable id, Object[] fields, boolean[] includeProperty, boolean[][] includeColumns, int j, PreparedStatement st, SharedSessionContractImplementor session, boolean isUpdate)intAbstractEntityPersister. dehydrate(Serializable id, Object[] fields, Object rowId, boolean[] includeProperty, boolean[][] includeColumns, int j, PreparedStatement ps, SharedSessionContractImplementor session, int index, boolean isUpdate)Marshall the fields of a persistent instance to a prepared statementvoidAbstractEntityPersister. delete(Serializable id, Object version, int j, Object object, String sql, SharedSessionContractImplementor session, Object[] loadedState)Perform an SQL DELETEvoidAbstractEntityPersister. delete(Serializable id, Object version, Object object, SharedSessionContractImplementor session)Delete an objectvoidEntityPersister. delete(Serializable id, Object version, Object object, SharedSessionContractImplementor session)Delete a persistent instanceint[]AbstractEntityPersister. findDirty(Object[] currentState, Object[] previousState, Object entity, SharedSessionContractImplementor session)Locate the property-indices of all properties considered to be dirty.int[]AbstractEntityPersister. findModified(Object[] old, Object[] current, Object entity, SharedSessionContractImplementor session)Locate the property-indices of all properties considered to be dirty.ObjectEntityPersister. forceVersionIncrement(Serializable id, Object currentVersion, SharedSessionContractImplementor session)ObjectAbstractEntityPersister. getCurrentVersion(Serializable id, SharedSessionContractImplementor session)Retrieve the version numberObjectEntityPersister. getCurrentVersion(Serializable id, SharedSessionContractImplementor session)Get the current version of the object, or return null if there is no row for the given identifier.Object[]AbstractEntityPersister. getDatabaseSnapshot(Serializable id, SharedSessionContractImplementor session)Object[]EntityPersister. getDatabaseSnapshot(Serializable id, SharedSessionContractImplementor session)Get the current database state of the object, in a "hydrated" form, without resolving identifiersSerializableAbstractEntityPersister. getIdByUniqueKey(Serializable key, String uniquePropertyName, SharedSessionContractImplementor session)SerializableEntityPersister. getIdentifier(Object object)Deprecated.IdentifierGeneratorAbstractEntityPersister. getIdentifierGenerator()Object[]AbstractEntityPersister. getNaturalIdentifierSnapshot(Serializable id, SharedSessionContractImplementor session)ObjectEntityPersister. getPropertyValue(Object object, int i)Get the value of a particular propertyObject[]AbstractEntityPersister. getPropertyValuesToInsert(Object object, Map mergeMap, SharedSessionContractImplementor session)Object[]EntityPersister. getPropertyValuesToInsert(Object object, Map mergeMap, SharedSessionContractImplementor session)Return the values of the insertable properties of the object (including backrefs)ObjectEntityPersister. getVersion(Object object)Get the version number (or timestamp) from the object's version property (or return null if not versioned)Object[]AbstractEntityPersister. hydrate(ResultSet rs, Serializable id, Object object, Loadable rootLoadable, String[][] suffixedPropertyColumns, boolean forceEager, boolean[] propertiesForceEager, SharedSessionContractImplementor session)Unmarshal the fields of a persistent instance from a result set, without resolving associations or collections.Object[]Loadable. hydrate(ResultSet rs, Serializable id, Object object, Loadable rootLoadable, String[][] suffixedPropertyColumns, boolean forceEager, boolean[] propertiesForceEager, SharedSessionContractImplementor session)Retrieve property values from one row of a result setdefault Object[]Loadable. hydrate(ResultSet rs, Serializable id, Object object, Loadable rootLoadable, String[][] suffixedPropertyColumns, boolean forceEager, SharedSessionContractImplementor session)Retrieve property values from one row of a result setvoidAbstractEntityPersister. insert(Serializable id, Object[] fields, boolean[] notNull, int j, String sql, Object object, SharedSessionContractImplementor session)Perform an SQL INSERT.SerializableAbstractEntityPersister. insert(Object[] fields, boolean[] notNull, String sql, Object object, SharedSessionContractImplementor session)Perform an SQL INSERT, and then retrieve a generated identifier.SerializableAbstractEntityPersister. insert(Object[] fields, Object object, SharedSessionContractImplementor session)voidEntityPersister. insert(Serializable id, Object[] fields, Object object, SharedSessionContractImplementor session)Persist an instanceSerializableEntityPersister. insert(Object[] fields, Object object, SharedSessionContractImplementor session)Persist an instance, using a natively generated identifier (optional operation)booleanDiscriminatorType. isDirty(Object old, Object current, boolean[] checkable, SharedSessionContractImplementor session)BooleanAbstractEntityPersister. isTransient(Object entity, SharedSessionContractImplementor session)BooleanEntityPersister. isTransient(Object object, SharedSessionContractImplementor session)Is this a new transient instance?ObjectAbstractEntityPersister. load(Serializable id, Object optionalObject, LockOptions lockOptions, SharedSessionContractImplementor session)Load an instance using either the forUpdateLoader or the outer joining loader, depending upon the value of the lock parameterObjectAbstractEntityPersister. load(Serializable id, Object optionalObject, LockOptions lockOptions, SharedSessionContractImplementor session, Boolean readOnly)ObjectEntityPersister. load(Serializable id, Object optionalObject, LockMode lockMode, SharedSessionContractImplementor session)Load an instance of the persistent class.default ObjectEntityPersister. load(Serializable id, Object optionalObject, LockMode lockMode, SharedSessionContractImplementor session, Boolean readOnly)ObjectEntityPersister. load(Serializable id, Object optionalObject, LockOptions lockOptions, SharedSessionContractImplementor session)Load an instance of the persistent class.default ObjectEntityPersister. load(Serializable id, Object optionalObject, LockOptions lockOptions, SharedSessionContractImplementor session, Boolean readOnly)ObjectAbstractEntityPersister. loadByNaturalId(Object[] naturalIdValues, LockOptions lockOptions, SharedSessionContractImplementor session)ObjectAbstractEntityPersister. loadByUniqueKey(String propertyName, Object uniqueKey, SharedSessionContractImplementor session)voidAbstractEntityPersister. lock(Serializable id, Object version, Object object, LockMode lockMode, SharedSessionContractImplementor session)voidAbstractEntityPersister. lock(Serializable id, Object version, Object object, LockOptions lockOptions, SharedSessionContractImplementor session)voidEntityPersister. lock(Serializable id, Object version, Object object, LockMode lockMode, SharedSessionContractImplementor session)Do a version check (optional operation)voidEntityPersister. lock(Serializable id, Object version, Object object, LockOptions lockOptions, SharedSessionContractImplementor session)Do a version check (optional operation)ObjectDiscriminatorType. nullSafeGet(ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner)ObjectDiscriminatorType. nullSafeGet(ResultSet rs, String name, SharedSessionContractImplementor session, Object owner)voidDiscriminatorType. nullSafeSet(PreparedStatement st, Object value, int index, boolean[] settable, SharedSessionContractImplementor session)voidDiscriminatorType. nullSafeSet(PreparedStatement st, Object value, int index, SharedSessionContractImplementor session)ObjectDiscriminatorType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map copyCache)StringDiscriminatorType. toLoggableString(Object value, SessionFactoryImplementor factory)voidAbstractEntityPersister. update(Serializable id, Object[] fields, int[] dirtyFields, boolean hasDirtyCollection, Object[] oldFields, Object oldVersion, Object object, Object rowId, SharedSessionContractImplementor session)Update an objectbooleanAbstractEntityPersister. update(Serializable id, Object[] fields, Object[] oldFields, Object rowId, boolean[] includeProperty, int j, Object oldVersion, Object object, String sql, SharedSessionContractImplementor session)voidEntityPersister. update(Serializable id, Object[] fields, int[] dirtyFields, boolean hasDirtyCollection, Object[] oldFields, Object oldVersion, Object object, Object rowId, SharedSessionContractImplementor session)Update a persistent instancevoidAbstractEntityPersister. updateOrInsert(Serializable id, Object[] fields, Object[] oldFields, Object rowId, boolean[] includeProperty, int j, Object oldVersion, Object object, String sql, SharedSessionContractImplementor session)Perform an SQL UPDATE or SQL INSERTConstructors in org.hibernate.persister.entity that throw HibernateException Constructor Description AbstractEntityPersister(PersistentClass persistentClass, EntityDataAccess cacheAccessStrategy, NaturalIdDataAccess naturalIdRegionAccessStrategy, PersisterCreationContext creationContext)JoinedSubclassEntityPersister(PersistentClass persistentClass, EntityDataAccess cacheAccessStrategy, NaturalIdDataAccess naturalIdRegionAccessStrategy, PersisterCreationContext creationContext)SingleTableEntityPersister(PersistentClass persistentClass, EntityDataAccess cacheAccessStrategy, NaturalIdDataAccess naturalIdRegionAccessStrategy, PersisterCreationContext creationContext)UnionSubclassEntityPersister(PersistentClass persistentClass, EntityDataAccess cacheAccessStrategy, NaturalIdDataAccess naturalIdRegionAccessStrategy, PersisterCreationContext creationContext) -
Uses of HibernateException in org.hibernate.persister.spi
Subclasses of HibernateException in org.hibernate.persister.spi Modifier and Type Class Description classUnknownPersisterExceptionIndicates that the persister to use is not known and could not be determined.Methods in org.hibernate.persister.spi that throw HibernateException Modifier and Type Method Description CollectionPersisterPersisterFactory. createCollectionPersister(Collection collectionBinding, CollectionDataAccess cacheAccessStrategy, PersisterCreationContext creationContext)Create a collection persister instance.EntityPersisterPersisterFactory. createEntityPersister(PersistentClass entityBinding, EntityDataAccess entityCacheAccessStrategy, NaturalIdDataAccess naturalIdCacheAccessStrategy, PersisterCreationContext creationContext)Create an entity persister instance. -
Uses of HibernateException in org.hibernate.persister.walking.spi
Subclasses of HibernateException in org.hibernate.persister.walking.spi Modifier and Type Class Description classWalkingExceptionIndicates a problem walking the domain tree. -
Uses of HibernateException in org.hibernate.procedure
Subclasses of HibernateException in org.hibernate.procedure Modifier and Type Class Description classNamedParametersNotSupportedExceptionThrown to indicate that an attempt was made to register a stored procedure named parameter, but the underlying database reports to not support named parameters.classNoSuchParameterExceptionclassParameterMisuseExceptionThrown to indicate a misuse of aParameterRegistrationclassParameterStrategyExceptionclassUnknownSqlResultSetMappingException -
Uses of HibernateException in org.hibernate.property.access.spi
Subclasses of HibernateException in org.hibernate.property.access.spi Modifier and Type Class Description classPropertyAccessBuildingExceptionIndicates a problem while building a PropertyAccessclassPropertyAccessExceptionIndicates a problem reading or writing value from/to a persistent property.classPropertyAccessSerializationException -
Uses of HibernateException in org.hibernate.proxy
Methods in org.hibernate.proxy that throw HibernateException Modifier and Type Method Description ObjectAbstractLazyInitializer. getImplementation(SharedSessionContractImplementor s)ObjectLazyInitializer. getImplementation(SharedSessionContractImplementor session)Return the underlying persistent object in the given session, or null if not contained in this session's persistence context.HibernateProxyProxyFactory. getProxy(Serializable id, SharedSessionContractImplementor session)Create a new proxy instancevoidAbstractLazyInitializer. initialize()voidLazyInitializer. initialize()Initialize the proxy, fetching the target entity if necessary.voidProxyFactory. postInstantiate(String entityName, Class persistentClass, Set<Class> interfaces, Method getIdentifierMethod, Method setIdentifierMethod, CompositeType componentIdType)Called immediately after instantiation of this factory.voidAbstractLazyInitializer. setSession(SharedSessionContractImplementor s)voidLazyInitializer. setSession(SharedSessionContractImplementor session)Associate the proxy with the given session. -
Uses of HibernateException in org.hibernate.proxy.map
Methods in org.hibernate.proxy.map that throw HibernateException Modifier and Type Method Description voidMapProxyFactory. postInstantiate(String entityName, Class persistentClass, Set interfaces, Method getIdentifierMethod, Method setIdentifierMethod, CompositeType componentIdType) -
Uses of HibernateException in org.hibernate.proxy.pojo.bytebuddy
Methods in org.hibernate.proxy.pojo.bytebuddy that throw HibernateException Modifier and Type Method Description HibernateProxyByteBuddyProxyFactory. getProxy(Serializable id, SharedSessionContractImplementor session)voidByteBuddyProxyFactory. postInstantiate(String entityName, Class persistentClass, Set<Class> interfaces, Method getIdentifierMethod, Method setIdentifierMethod, CompositeType componentIdType) -
Uses of HibernateException in org.hibernate.query.spi
Methods in org.hibernate.query.spi that return types with arguments of type HibernateException Modifier and Type Method Description Map<String,HibernateException>NamedQueryRepository. checkNamedQueries(QueryPlanCache queryPlanCache) -
Uses of HibernateException in org.hibernate.resource.transaction
Subclasses of HibernateException in org.hibernate.resource.transaction Modifier and Type Class Description classLocalSynchronizationExceptionWraps an exception thrown from a "local synchronization" (one registered in the SynchronizationRegistry).classNullSynchronizationExceptionIndicates an attempt to register a null synchronization.classTransactionRequiredForJoinExceptionIndicates a call toTransactionCoordinator.explicitJoin()that requires an active transaction where there currently is none. -
Uses of HibernateException in org.hibernate.result
Subclasses of HibernateException in org.hibernate.result Modifier and Type Class Description classNoMoreReturnsException -
Uses of HibernateException in org.hibernate.secure.spi
Subclasses of HibernateException in org.hibernate.secure.spi Modifier and Type Class Description classIntegrationException -
Uses of HibernateException in org.hibernate.service
Subclasses of HibernateException in org.hibernate.service Modifier and Type Class Description classNullServiceExceptionclassUnknownServiceExceptionIndicates that an unknown service was requested from the registry.classUnknownUnwrapTypeException -
Uses of HibernateException in org.hibernate.service.spi
Subclasses of HibernateException in org.hibernate.service.spi Modifier and Type Class Description classServiceExceptionIndicates a problem with a service. -
Uses of HibernateException in org.hibernate.sql.ordering.antlr
Methods in org.hibernate.sql.ordering.antlr that throw HibernateException Modifier and Type Method Description SqlValueReference[]ColumnMapper. map(String reference)Resolve the property reference to its underlying columns. -
Uses of HibernateException in org.hibernate.tool.hbm2ddl
Subclasses of HibernateException in org.hibernate.tool.hbm2ddl Modifier and Type Class Description classImportScriptExceptionDeprecated.Everything in this package has been replaced withSchemaManagementTooland friends. -
Uses of HibernateException in org.hibernate.tool.schema.ast
Subclasses of HibernateException in org.hibernate.tool.schema.ast Modifier and Type Class Description classSqlScriptParserException -
Uses of HibernateException in org.hibernate.tool.schema.extract.spi
Subclasses of HibernateException in org.hibernate.tool.schema.extract.spi Modifier and Type Class Description classSchemaExtractionException -
Uses of HibernateException in org.hibernate.tool.schema.spi
Subclasses of HibernateException in org.hibernate.tool.schema.spi Modifier and Type Class Description classCommandAcceptanceExceptionIndicates a problem accepting/executing a schema management command.classSchemaManagementExceptionIndicates a problem in performing schema management. -
Uses of HibernateException in org.hibernate.tuple.component
Methods in org.hibernate.tuple.component that throw HibernateException Modifier and Type Method Description ObjectAbstractComponentTuplizer. getPropertyValue(Object component, int i)Object[]AbstractComponentTuplizer. getPropertyValues(Object component)Object[]PojoComponentTuplizer. getPropertyValues(Object component)ObjectAbstractComponentTuplizer. instantiate()This method does not populate the component parentvoidAbstractComponentTuplizer. setPropertyValues(Object component, Object[] values)voidPojoComponentTuplizer. setPropertyValues(Object component, Object[] values) -
Uses of HibernateException in org.hibernate.tuple.entity
Subclasses of HibernateException in org.hibernate.tuple.entity Modifier and Type Class Description static classEntityMetamodel.ValueGenerationStrategyExceptionMethods in org.hibernate.tuple.entity that throw HibernateException Modifier and Type Method Description ObjectEntityTuplizer. createProxy(Serializable id, SharedSessionContractImplementor session)Generates an appropriate proxy representation of this entity for this entity-mode.SerializableAbstractEntityTuplizer. getIdentifier(Object entity)SerializableEntityTuplizer. getIdentifier(Object entity)Deprecated.ObjectAbstractEntityTuplizer. getPropertyValue(Object entity, int i)ObjectAbstractEntityTuplizer. getPropertyValue(Object entity, String propertyPath)ObjectEntityTuplizer. getPropertyValue(Object entity, String propertyName)Extract the value of a particular property from the given entity.Object[]PojoEntityTuplizer. getPropertyValues(Object entity)Object[]EntityTuplizer. getPropertyValuesToInsert(Object entity, Map mergeMap, SharedSessionContractImplementor session)Extract the values of the insertable properties of the entity (including backrefs)ObjectAbstractEntityTuplizer. getVersion(Object entity)ObjectEntityTuplizer. getVersion(Object entity)Extract the value of the version property from the given entity.ObjectAbstractEntityTuplizer. instantiate()ObjectAbstractEntityTuplizer. instantiate(Serializable id)ObjectEntityTuplizer. instantiate(Serializable id)Deprecated.voidAbstractEntityTuplizer. setIdentifier(Object entity, Serializable id)voidEntityTuplizer. setIdentifier(Object entity, Serializable id)Deprecated.voidAbstractEntityTuplizer. setPropertyValue(Object entity, int i, Object value)voidAbstractEntityTuplizer. setPropertyValue(Object entity, String propertyName, Object value)voidEntityTuplizer. setPropertyValue(Object entity, int i, Object value)Inject the value of a particular property.voidEntityTuplizer. setPropertyValue(Object entity, String propertyName, Object value)Inject the value of a particular property.voidAbstractEntityTuplizer. setPropertyValues(Object entity, Object[] values)voidPojoEntityTuplizer. setPropertyValues(Object entity, Object[] values) -
Uses of HibernateException in org.hibernate.type
Subclasses of HibernateException in org.hibernate.type Modifier and Type Class Description classSerializationExceptionThrown when a property cannot be serialized/deserializedMethods in org.hibernate.type that throw HibernateException Modifier and Type Method Description ObjectAbstractStandardBasicType. assemble(Serializable cached, SharedSessionContractImplementor session, Object owner)ObjectAbstractType. assemble(Serializable cached, SharedSessionContractImplementor session, Object owner)ObjectAnyType. assemble(Serializable cached, SharedSessionContractImplementor session, Object owner)ObjectCollectionType. assemble(Serializable cached, SharedSessionContractImplementor session, Object owner)ObjectComponentType. assemble(Serializable object, SharedSessionContractImplementor session, Object owner)ObjectCompositeCustomType. assemble(Serializable cached, SharedSessionContractImplementor session, Object owner)ObjectEnumType. assemble(Serializable cached, Object owner)ObjectManyToOneType. assemble(Serializable oid, SharedSessionContractImplementor session, Object owner)ObjectOneToOneType. assemble(Serializable oid, SharedSessionContractImplementor session, Object owner)ObjectSpecialOneToOneType. assemble(Serializable oid, SharedSessionContractImplementor session, Object owner)ObjectType. assemble(Serializable cached, SharedSessionContractImplementor session, Object owner)Reconstruct the object from its disassembled state.ObjectCollectionType. deepCopy(Object value, SessionFactoryImplementor factory)ObjectComponentType. deepCopy(Object component, SessionFactoryImplementor factory)ObjectCompositeCustomType. deepCopy(Object value, SessionFactoryImplementor factory)ObjectCustomType. deepCopy(Object value, SessionFactoryImplementor factory)ObjectEnumType. deepCopy(Object value)ObjectMetaType. deepCopy(Object value, SessionFactoryImplementor factory)ObjectType. deepCopy(Object value, SessionFactoryImplementor factory)Return a deep copy of the persistent state, stopping at entities and at collections.SerializableAbstractStandardBasicType. disassemble(Object value, SharedSessionContractImplementor session, Object owner)SerializableAbstractType. disassemble(Object value, SharedSessionContractImplementor session, Object owner)SerializableAnyType. disassemble(Object value, SharedSessionContractImplementor session, Object owner)SerializableCollectionType. disassemble(Object value, SharedSessionContractImplementor session, Object owner)SerializableComponentType. disassemble(Object value, SharedSessionContractImplementor session, Object owner)SerializableCompositeCustomType. disassemble(Object value, SharedSessionContractImplementor session, Object owner)SerializableEnumType. disassemble(Object value)SerializableManyToOneType. disassemble(Object value, SharedSessionContractImplementor session, Object owner)SerializableOneToOneType. disassemble(Object value, SharedSessionContractImplementor session, Object owner)SerializableSpecialOneToOneType. disassemble(Object value, SharedSessionContractImplementor session, Object owner)SerializableType. disassemble(Object value, SharedSessionContractImplementor session, Object owner)Return a disassembled representation of the object.booleanEnumType. equals(Object x, Object y)TAbstractStandardBasicType. fromStringValue(String xml)ObjectCustomType. fromStringValue(String string)TSingleColumnType. fromStringValue(String xml)TStringRepresentableType. fromStringValue(String string)Consume the given string representation back into this types java form.DateTimestampType. fromStringValue(String xml)ObjectMetaType. fromXMLString(String xml, Mapping factory)ObjectAbstractStandardBasicType. get(ResultSet rs, String name, SharedSessionContractImplementor session)ObjectSingleColumnType. get(ResultSet rs, String name, SharedSessionContractImplementor session)Get a column value from a result set, without worrying about the possibility of null values.intType. getHashCode(Object x)Get a hash code, consistent with persistence "equality".intType. getHashCode(Object x, SessionFactoryImplementor factory)Get a hash code, consistent with persistence "equality".protected ObjectEntityType. getIdentifier(Object value, SharedSessionContractImplementor session)ObjectAnyType. getPropertyValue(Object component, int i, SharedSessionContractImplementor session)ObjectComponentType. getPropertyValue(Object component, int i)ObjectComponentType. getPropertyValue(Object component, int i, SharedSessionContractImplementor session)ObjectComponentType. getPropertyValue(Object component, int i, EntityMode entityMode)ObjectCompositeCustomType. getPropertyValue(Object component, int i)ObjectCompositeCustomType. getPropertyValue(Object component, int i, SharedSessionContractImplementor session)ObjectCompositeType. getPropertyValue(Object component, int index, SharedSessionContractImplementor session)Extract a particular component property value indicated by index.Object[]AnyType. getPropertyValues(Object component, SharedSessionContractImplementor session)Object[]ComponentType. getPropertyValues(Object component, SharedSessionContractImplementor session)Object[]ComponentType. getPropertyValues(Object component, EntityMode entityMode)Object[]CompositeCustomType. getPropertyValues(Object component, SharedSessionContractImplementor session)Object[]CompositeCustomType. getPropertyValues(Object component, EntityMode entityMode)Object[]CompositeType. getPropertyValues(Object component, SharedSessionContractImplementor session)Extract the values of the component properties from the given component instanceObject[]CompositeType. getPropertyValues(Object component, EntityMode entityMode)Extract the values of the component properties from the given component instance without access to the session.intEnumType. hashCode(Object x)ObjectAbstractStandardBasicType. hydrate(ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner)ObjectAbstractType. hydrate(ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner)ObjectAnyType. hydrate(ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner)ObjectComponentType. hydrate(ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner)ObjectManyToOneType. hydrate(ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner)ObjectOneToOneType. hydrate(ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner)ObjectSpecialOneToOneType. hydrate(ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner)ObjectType. hydrate(ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner)Extract a value from the JDBC result set.PersistentCollectionArrayType. instantiate(SharedSessionContractImplementor session, CollectionPersister persister, Serializable key)PersistentCollectionBagType. instantiate(SharedSessionContractImplementor session, CollectionPersister persister, Serializable key)ObjectComponentType. instantiate(Object parent, SharedSessionContractImplementor session)ObjectComponentType. instantiate(EntityMode entityMode)This method does not populate the component parentPersistentCollectionCustomCollectionType. instantiate(SharedSessionContractImplementor session, CollectionPersister persister, Serializable key)ObjectEmbeddedComponentType. instantiate(Object parent, SharedSessionContractImplementor session)PersistentCollectionIdentifierBagType. instantiate(SharedSessionContractImplementor session, CollectionPersister persister, Serializable key)booleanAbstractType. isDirty(Object old, Object current, SharedSessionContractImplementor session)booleanAnyType. isDirty(Object old, Object current, boolean[] checkable, SharedSessionContractImplementor session)booleanCollectionType. isDirty(Object old, Object current, boolean[] checkable, SharedSessionContractImplementor session)booleanCollectionType. isDirty(Object old, Object current, SharedSessionContractImplementor session)booleanComponentType. isDirty(Object x, Object y, boolean[] checkable, SharedSessionContractImplementor session)booleanComponentType. isDirty(Object x, Object y, SharedSessionContractImplementor session)booleanCompositeCustomType. isDirty(Object old, Object current, boolean[] checkable, SharedSessionContractImplementor session)booleanCustomType. isDirty(Object old, Object current, boolean[] checkable, SharedSessionContractImplementor session)booleanManyToOneType. isDirty(Object old, Object current, boolean[] checkable, SharedSessionContractImplementor session)booleanManyToOneType. isDirty(Object old, Object current, SharedSessionContractImplementor session)booleanMetaType. isDirty(Object old, Object current, boolean[] checkable, SharedSessionContractImplementor session)booleanType. isDirty(Object oldState, Object currentState, boolean[] checkable, SharedSessionContractImplementor session)Should the parent be considered dirty, given both the old and current value?booleanType. isDirty(Object old, Object current, SharedSessionContractImplementor session)Should the parent be considered dirty, given both the old and current value?booleanComponentType. isEqual(Object x, Object y)booleanComponentType. isEqual(Object x, Object y, SessionFactoryImplementor factory)booleanCompositeCustomType. isEqual(Object x, Object y)booleanCustomType. isEqual(Object x, Object y)booleanType. isEqual(Object x, Object y)Compare two instances of the class mapped by this type for persistence "equality" (equality of persistent state).booleanType. isEqual(Object x, Object y, SessionFactoryImplementor factory)Compare two instances of the class mapped by this type for persistence "equality" (equality of persistent state).booleanAbstractType. isModified(Object old, Object current, boolean[] checkable, SharedSessionContractImplementor session)booleanAnyType. isModified(Object old, Object current, boolean[] checkable, SharedSessionContractImplementor session)booleanCollectionType. isModified(Object old, Object current, boolean[] checkable, SharedSessionContractImplementor session)booleanComponentType. isModified(Object old, Object current, boolean[] checkable, SharedSessionContractImplementor session)booleanManyToOneType. isModified(Object old, Object current, boolean[] checkable, SharedSessionContractImplementor session)booleanType. isModified(Object dbState, Object currentState, boolean[] checkable, SharedSessionContractImplementor session)Has the value been modified compared to the current database state? The difference between this and theType.isDirty(java.lang.Object, java.lang.Object, org.hibernate.engine.spi.SharedSessionContractImplementor)methods is that here we need to account for "partially" built values.booleanAbstractType. isSame(Object x, Object y)booleanAnyType. isSame(Object x, Object y)booleanComponentType. isSame(Object x, Object y)booleanType. isSame(Object x, Object y)Compare two instances of the class mapped by this type for persistence "equality" (equality of persistent state) taking a shortcut for entity references.ObjectEntityType. loadByUniqueKey(String entityName, String uniqueKeyPropertyName, Object key, SharedSessionContractImplementor session)Load an instance by a unique key that is not the primary key.ObjectAnyType. nullSafeGet(ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner)ObjectCollectionType. nullSafeGet(ResultSet rs, String[] name, SharedSessionContractImplementor session, Object owner)ObjectComponentType. nullSafeGet(ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner)ObjectComponentType. nullSafeGet(ResultSet rs, String name, SharedSessionContractImplementor session, Object owner)ObjectCompositeCustomType. nullSafeGet(ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner)ObjectCompositeCustomType. nullSafeGet(ResultSet rs, String columnName, SharedSessionContractImplementor session, Object owner)ObjectEntityType. nullSafeGet(ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner)ObjectEntityType. nullSafeGet(ResultSet rs, String name, SharedSessionContractImplementor session, Object owner)ObjectMetaType. nullSafeGet(ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner)ObjectMetaType. nullSafeGet(ResultSet rs, String name, SharedSessionContractImplementor session, Object owner)TSingleColumnType. nullSafeGet(ResultSet rs, String name, SharedSessionContractImplementor session)Get a column value from a result set by name.ObjectType. nullSafeGet(ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner)Extract a value of themapped classfrom the JDBC result set.ObjectType. nullSafeGet(ResultSet rs, String name, SharedSessionContractImplementor session, Object owner)Extract a value of themapped classfrom the JDBC result set.voidAbstractSingleColumnStandardBasicType. nullSafeSet(PreparedStatement st, Object value, int index, boolean[] settable, SharedSessionContractImplementor session)voidAnyType. nullSafeSet(PreparedStatement st, Object value, int index, boolean[] settable, SharedSessionContractImplementor session)voidAnyType. nullSafeSet(PreparedStatement st, Object value, int index, SharedSessionContractImplementor session)voidCollectionType. nullSafeSet(PreparedStatement st, Object value, int index, boolean[] settable, SharedSessionContractImplementor session)voidCollectionType. nullSafeSet(PreparedStatement st, Object value, int index, SharedSessionContractImplementor session)voidComponentType. nullSafeSet(PreparedStatement st, Object value, int begin, boolean[] settable, SharedSessionContractImplementor session)voidComponentType. nullSafeSet(PreparedStatement st, Object value, int begin, SharedSessionContractImplementor session)voidCompositeCustomType. nullSafeSet(PreparedStatement st, Object value, int index, boolean[] settable, SharedSessionContractImplementor session)voidCompositeCustomType. nullSafeSet(PreparedStatement st, Object value, int index, SharedSessionContractImplementor session)voidEnumType. nullSafeSet(PreparedStatement st, Object value, int index, SharedSessionContractImplementor session)voidMetaType. nullSafeSet(PreparedStatement st, Object value, int index, boolean[] settable, SharedSessionContractImplementor session)voidMetaType. nullSafeSet(PreparedStatement st, Object value, int index, SharedSessionContractImplementor session)voidType. nullSafeSet(PreparedStatement st, Object value, int index, boolean[] settable, SharedSessionContractImplementor session)Bind a value represented by an instance of themapped classto the JDBC prepared statement, ignoring some columns as dictated by the 'settable' parameter.voidType. nullSafeSet(PreparedStatement st, Object value, int index, SharedSessionContractImplementor session)Bind a value represented by an instance of themapped classto the JDBC prepared statement.protected StringCollectionType. renderLoggableString(Object value, SessionFactoryImplementor factory)protected StringCustomCollectionType. renderLoggableString(Object value, SessionFactoryImplementor factory)ObjectAbstractType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map copyCache, ForeignKeyDirection foreignKeyDirection)ObjectAnyType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map copyCache)ObjectCollectionType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map copyCache)ObjectComponentType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map copyCache)ObjectComponentType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map copyCache, ForeignKeyDirection foreignKeyDirection)ObjectCompositeCustomType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map copyCache)ObjectCustomType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map copyCache)ObjectEntityType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map copyCache)ObjectEnumType. replace(Object original, Object target, Object owner)ObjectType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map copyCache)During merge, replace the existing (target) value in the entity we are merging to with a new (original) value from the detached entity we are merging.ObjectType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map copyCache, ForeignKeyDirection foreignKeyDirection)During merge, replace the existing (target) value in the entity we are merging to with a new (original) value from the detached entity we are merging.ObjectArrayType. replaceElements(Object original, Object target, Object owner, Map copyCache, SharedSessionContractImplementor session)ObjectCustomCollectionType. replaceElements(Object original, Object target, Object owner, Map copyCache, SharedSessionContractImplementor session)ObjectMapType. replaceElements(Object original, Object target, Object owner, Map copyCache, SharedSessionContractImplementor session)ObjectAbstractStandardBasicType. resolve(Object value, SharedSessionContractImplementor session, Object owner)ObjectAbstractType. resolve(Object value, SharedSessionContractImplementor session, Object owner)ObjectAnyType. resolve(Object value, SharedSessionContractImplementor session, Object owner)ObjectCollectionType. resolve(Object value, SharedSessionContractImplementor session, Object owner)ObjectCollectionType. resolve(Object value, SharedSessionContractImplementor session, Object owner, Boolean overridingEager)ObjectComponentType. resolve(Object value, SharedSessionContractImplementor session, Object owner)ObjectEntityType. resolve(Object value, SharedSessionContractImplementor session, Object owner)Resolve an identifier or unique key valueObjectEntityType. resolve(Object value, SharedSessionContractImplementor session, Object owner, Boolean overridingEager)ObjectManyToOneType. resolve(Object value, SharedSessionContractImplementor session, Object owner, Boolean overridingEager)ObjectType. resolve(Object value, SharedSessionContractImplementor session, Object owner)default ObjectType. resolve(Object value, SharedSessionContractImplementor session, Object owner, Boolean overridingEager)The second phase of 2-phase loading.protected ObjectEntityType. resolveIdentifier(Serializable id, SharedSessionContractImplementor session)protected ObjectEntityType. resolveIdentifier(Serializable id, SharedSessionContractImplementor session, Boolean overridingEager)Resolve an identifier via a load.ObjectAbstractStandardBasicType. semiResolve(Object value, SharedSessionContractImplementor session, Object owner)ObjectAbstractType. semiResolve(Object value, SharedSessionContractImplementor session, Object owner)ObjectCollectionType. semiResolve(Object value, SharedSessionContractImplementor session, Object owner)ObjectComponentType. semiResolve(Object value, SharedSessionContractImplementor session, Object owner)ObjectType. semiResolve(Object value, SharedSessionContractImplementor session, Object owner)Given a hydrated, but unresolved value, return a value that may be used to reconstruct property-ref associations.voidAbstractStandardBasicType. set(PreparedStatement st, T value, int index, SharedSessionContractImplementor session)voidSingleColumnType. set(PreparedStatement st, T value, int index, SharedSessionContractImplementor session)Set a parameter value without worrying about the possibility of null values.voidComponentType. setPropertyValues(Object component, Object[] values, EntityMode entityMode)voidCompositeCustomType. setPropertyValues(Object component, Object[] values, EntityMode entityMode)voidCompositeType. setPropertyValues(Object component, Object[] values, EntityMode entityMode)Inject property values onto the given component instanceStringAnyType. toLoggableString(Object value, SessionFactoryImplementor factory)StringArrayType. toLoggableString(Object value, SessionFactoryImplementor factory)StringCollectionType. toLoggableString(Object value, SessionFactoryImplementor factory)StringComponentType. toLoggableString(Object value, SessionFactoryImplementor factory)StringCompositeCustomType. toLoggableString(Object value, SessionFactoryImplementor factory)StringCustomType. toLoggableString(Object value, SessionFactoryImplementor factory)StringMetaType. toLoggableString(Object value, SessionFactoryImplementor factory)StringType. toLoggableString(Object value, SessionFactoryImplementor factory)Generate a representation of the value for logging purposes.StringCustomType. toString(Object value)StringSingleColumnType. toString(T value)StringStringRepresentableType. toString(T value)Render the value to the string representation.StringMetaType. toXMLString(Object value, SessionFactoryImplementor factory) -
Uses of HibernateException in org.hibernate.type.descriptor.java
Methods in org.hibernate.type.descriptor.java that return HibernateException Modifier and Type Method Description protected HibernateExceptionAbstractTypeDescriptor. unknownUnwrap(Class conversionType)protected HibernateExceptionAbstractTypeDescriptor. unknownWrap(Class conversionType) -
Uses of HibernateException in org.hibernate.usertype
Methods in org.hibernate.usertype that throw HibernateException Modifier and Type Method Description ObjectCompositeUserType. assemble(Serializable cached, SharedSessionContractImplementor session, Object owner)Reconstruct an object from the cacheable representation.ObjectUserType. assemble(Serializable cached, Object owner)Reconstruct an object from the cacheable representation.ObjectCompositeUserType. deepCopy(Object value)Return a deep copy of the persistent state, stopping at entities and at collections.ObjectUserType. deepCopy(Object value)Return a deep copy of the persistent state, stopping at entities and at collections.SerializableCompositeUserType. disassemble(Object value, SharedSessionContractImplementor session)Transform the object into its cacheable representation.SerializableUserType. disassemble(Object value)Transform the object into its cacheable representation.booleanCompositeUserType. equals(Object x, Object y)Compare two instances of the class mapped by this type for persistence "equality".booleanUserType. equals(Object x, Object y)Compare two instances of the class mapped by this type for persistence "equality".ObjectCompositeUserType. getPropertyValue(Object component, int property)Get the value of a property.intCompositeUserType. hashCode(Object x)Get a hashcode for the instance, consistent with persistence "equality"intUserType. hashCode(Object x)Get a hashcode for the instance, consistent with persistence "equality"PersistentCollectionUserCollectionType. instantiate(SharedSessionContractImplementor session, CollectionPersister persister)Instantiate an uninitialized instance of the collection wrapperObjectCompositeUserType. nullSafeGet(ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner)Retrieve an instance of the mapped class from a JDBC resultset.ObjectUserType. nullSafeGet(ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner)Retrieve an instance of the mapped class from a JDBC resultset.voidCompositeUserType. nullSafeSet(PreparedStatement st, Object value, int index, SharedSessionContractImplementor session)Write an instance of the mapped class to a prepared statement.voidUserType. nullSafeSet(PreparedStatement st, Object value, int index, SharedSessionContractImplementor session)Write an instance of the mapped class to a prepared statement.ObjectCompositeUserType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner)During merge, replace the existing (target) value in the entity we are merging to with a new (original) value from the detached entity we are merging.ObjectUserType. replace(Object original, Object target, Object owner)During merge, replace the existing (target) value in the entity we are merging to with a new (original) value from the detached entity we are merging.ObjectUserCollectionType. replaceElements(Object original, Object target, CollectionPersister persister, Object owner, Map copyCache, SharedSessionContractImplementor session)Replace the elements of a collection with the elements of another collectionvoidCompositeUserType. setPropertyValue(Object component, int property, Object value)Set the value of a property.
-