Pinned fields
Click on the next to a field label to start pinning.
Details
Assignee
Michael Born @ OrtusMichael Born @ OrtusReporter
Luis MajanoLuis MajanoDue date
Aug 31, 2024Priority
MajorEpic Name
ORM Hibernate Module
Details
Details
Assignee
Michael Born @ Ortus
Michael Born @ OrtusReporter
Luis Majano
Luis MajanoDue date
Aug 31, 2024
Priority
Epic Name
ORM Hibernate Module
Sentry
Sentry
Sentry
Created May 30, 2024 at 11:26 AM
Updated February 14, 2025 at 12:26 PM
Phase I
Goal: Load the session factory
Java Interceptor:
ORMLoader
Listen to when an application starts
BoxEvent.ON_APPLICATION_START
Get all ORM settings, validate them with good messages if something failed. Prep all the config options to initialize the factory
Call the ormservice to
buildFactory()
Caveats
The building of the factory has to be based on the ORM Settings hash
Talk to context and store the appropriate factory for the request:
JDBCCOntext
add as an attachment the appropriateHibernateFactory
Listen when the listener is ready
BoxEvent.AFTER_APPLICATION_LISTENER_LOAD
Get the has of the form settings
Store the factory according to hash
ORMService
implementIService
Track the hibernate factories:
map with unique keys
this.hibernateFactories Map<String, HibernateFactory>
It’s a singleton
Factory management
getHibernateFactories()
hasHibernateFactory( String factoryKey )
getHibernateFactory( string factoryKey )
getHibernateFactoryCount()
removeHibernateFactory( string factoryKey )
removeAllHibernateFactories()
Phase II
Goal: Request-based session management