Log in to follow, share, and participate in this community.
Article Temporary table use
Temporary table useFor back ground, see http://in.relation.to/Bloggers/MultitableBulkOperations In Hibernate we decided to implement bulk HQL/JPAQL operations against "multi table structures" using temporary tables. The te...
ConfigurationThe current approach to configuring Hibernate is java.util.Properties based. Basically you throw a bunch of key-value pairs at it and it configures itself. But such an approach has a number of limitations....
JDBC4 supportProblem Part of supporting JDK 1.6 in Hibernate is supporting the move from JDBC3 to JDBC4, while still allowing support for JDBC3 for those still using JDK 1.5 (and even 1.4 still for a bit). This is an example...
Mapping metadata redesignThe purpose of this document is to capture design goals we want to incorporate into redesigning how mapping metadata is processed and how it is modelled. Currently these roles are fulfilled by the classes in the...
Type scopingThere are two main goals here: create the ability for *non-basic* Types to have access to the SessionFactory allow users to override the basic Type used for particular mappings SessionFactory access Current...