Issues
- Document how to implement and configure custom Batchers in Hibernate 4.xHHH-6711Resolved issue: HHH-6711
- JoinColumn on non key field fails to populate collectionHHH-6204Resolved issue: HHH-6204Steve Ebersole
- Envers - problem with mapping relation when using mixed inheritance strategyHHH-6177Resolved issue: HHH-6177AdamA
- Envers ignores custom comparators for SortedSetsHHH-6176Resolved issue: HHH-6176AdamA
- Prevent unnecessary calls to JDBC metadata methods.HHH-6169Resolved issue: HHH-6169Hardy Ferentschik
- Prefer regsitering JTA syncs via TransactionManagerHHH-6164Resolved issue: HHH-6164Steve Ebersole
- SessionFactory in QueryKeyHHH-6162Resolved issue: HHH-6162
- JAXB generated classes should have a prefix to distinguish then easier from model classesHHH-6131Resolved issue: HHH-6131Hardy Ferentschik
- Preprocess annotation configurationHHH-6114Resolved issue: HHH-6114Hardy Ferentschik
- Write orm.xml parserHHH-6113Resolved issue: HHH-6113Strong Liu
- Switch to use JAX for xml parsingHHH-6111Resolved issue: HHH-6111Former user
- Implement annotation binding for new metamodelHHH-6109Resolved issue: HHH-6109
- Metamodel dependence on ServiceRegistryHHH-6107Resolved issue: HHH-6107Steve Ebersole
- Fix up IntelliJ project generationHHH-6106Resolved issue: HHH-6106Steve Ebersole
- Clean up checks for java 1.3 versus 1.4HHH-6101Resolved issue: HHH-6101Steve Ebersole
- Slight naming changes in regards to new logging classesHHH-6098Resolved issue: HHH-6098Steve Ebersole
- Review log levels, especially related to i18n messagesHHH-6097Resolved issue: HHH-6097Steve Ebersole
- H2Dialect should use CACHED option for temporary table creationHHH-6096Resolved issue: HHH-6096Steve Ebersole
- Improve the way AbstractEntityManagerImpl.flush checks for an active transaction, should apply to other AbstractEntityManagerImpl methods that also check for an active txHHH-6095Resolved issue: HHH-6095Scott Marlow
- Test failures in hibernate-infinispan dealing with query cachingHHH-6094Resolved issue: HHH-6094Steve Ebersole
- Account for tenant identifier on QueryKeyHHH-6093Resolved issue: HHH-6093Steve Ebersole
21 of 21
Document how to implement and configure custom Batchers in Hibernate 4.x
Rejected
Description
Details
Assignee
UnassignedUnassignedReporter
Manuel Dominguez SarmientoManuel Dominguez SarmientoComponents
Priority
Major
Details
Details
Assignee
Unassigned
UnassignedReporter
Manuel Dominguez Sarmiento
Manuel Dominguez SarmientoComponents
Priority
Created October 5, 2011 at 2:59 PM
Updated January 9, 2025 at 1:08 PM
Resolved January 9, 2025 at 1:08 PM
Activity
Show:
We have been using a custom Oracle batching implementation to allow batch updates for versioned entities with the Oracle JDBC driver.
We tried to migrate to the latest Hibernate 4 CR, but found that the hooks for batching have changed, and it is not really obvious how this works or is configured.
Previously (3.6.x as well as older releases) had a hibernate.jdbc.factory_class property which allowed specifying a factory class for batching implementations.
How does this work now? Is it even supported?