ORM Hibernate Module

Description

Phase I

Goal: Load the session factory

  1. Java Interceptor: ORMLoader

    1. Listen to when an application starts

      1. BoxEvent.ON_APPLICATION_START

      2. Get all ORM settings, validate them with good messages if something failed. Prep all the config options to initialize the factory

      3. Call the ormservice to buildFactory()

      4. Caveats

        1. The building of the factory has to be based on the ORM Settings hash

      5. Talk to context and store the appropriate factory for the request: JDBCCOntext add as an attachment the appropriate HibernateFactory

    2. Listen when the listener is ready

      1. BoxEvent.AFTER_APPLICATION_LISTENER_LOAD

      2. Get the has of the form settings

      3. Store the factory according to hash

  2. ORMService implement IService

    1. Track the hibernate factories:

      1. map with unique keys

      2. this.hibernateFactories Map<String, HibernateFactory>

    2. It’s a singleton

    3. Factory management

      1. getHibernateFactories()

      2. hasHibernateFactory( String factoryKey )

      3. getHibernateFactory( string factoryKey )

      4. getHibernateFactoryCount()

      5. removeHibernateFactory( string factoryKey )

      6. removeAllHibernateFactories()

Phase II

Goal: Request-based session management

80% Done
Loading...

Activity

Show:

Michael Born @ OrtusJuly 26, 2024 at 3:01 PM

Copied description from .

Pinned fields
Click on the next to a field label to start pinning.

Details

Assignee

Reporter

Due date

Priority

Epic Name

Sentry

Created May 30, 2024 at 11:26 AM
Updated February 14, 2025 at 12:26 PM