awesome-repositories.com
Blog
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectAboutHow we rankPressMCP server
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
hibernate avatar

hibernate/hibernate-orm

0
View on GitHub↗
6,447 stars·3,782 forks·Java·Apache-2.0·9 viewshibernate.org↗

Hibernate Orm

Hibernate ORM is a Java object-relational mapper and a full implementation of the Jakarta Persistence API. It serves as a SQL database abstraction layer that translates Java object models into relational database schemas to manage data persistence and lifecycles.

The framework distinguishes itself with a multi-tenant data isolation framework for separating customer data within a single database instance. It also features a database schema generator that automatically produces and updates relational structures based on entity mappings.

The system covers broad capability areas including transaction management, concurrency locking control, and temporal data tracking for audit logging. It provides tools for data fetching optimization through entity-graph strategies and supports advanced data types such as vector data and nationalized characters.

The project includes a comprehensive suite of persistence layer test utilities, including database dialect filtering and specification compliance testing.

Features

  • Object-Relational Mapping - Translates Java object-oriented domain models into relational database tables to manage data persistence and retrieval.
  • Persistence Unit Managers - Provides a system for defining entity collections and connectivity settings via persistence unit configurations.
  • Persistence State Tracking - Compares object snapshots against loaded states to automatically generate minimal SQL update statements during flush.
  • Database Abstraction Layers - Provides a unified API for interacting with multiple database engines and SQL dialects.
  • Data Tenant Isolators - Separates data for different customers using schema mapping and credential management within a single database instance.
  • Complex Querying Techniques - Provides expressive query languages to handle intricate data retrieval requirements including aggregations and joins.
  • Database Transaction Management - Ensures data integrity and consistency by enforcing ACID properties through programmatic transaction boundary control.
  • Write-Behind Change Tracking - Tracks modifications made to objects in memory and automatically persists those changes to the underlying database.
  • Lazy Loading Patterns - Defers the retrieval of related data from the database until the object is explicitly accessed.
  • First-Level Caching - Maintains a session-scoped map of entity identifiers to object instances to ensure referential integrity.
  • Object-Relational Mappers - Implements a framework that translates Java object models into relational database schemas to manage data persistence.
  • Dialect-Specific SQL Generation - Translates abstract query trees into vendor-specific SQL strings to support multiple database dialects.
  • Multi-Backend SQL Abstractions - Provides a persistence layer that abstracts multiple SQL dialects to ensure database portability.
  • Entity Mapping Metadata - Defines object-relational relationships using metadata derived from Java annotations or XML configurations.
  • Persistence API Implementations - Provides a full implementation of the Jakarta Persistence API (JPA) for managing data between Java applications and databases.
  • Multi-tenancy Isolation - Implements architectural strategies for ensuring secure data separation between customers in shared database instances.
  • Automated Schema Evolution - Automatically generates and updates database tables and constraints based on application domain models.
  • Data Fetching Optimizations - Implements techniques for optimizing how related entities are retrieved to minimize database round-trips.
  • Data Revision Tracking - Maintains historical versions of entities using global revision numbers to enable auditing and data recovery.
  • Physical Schema Exports - Provides utilities to generate physical tables, sequences, and constraints based on entity mappings.
  • Schema Generators - Automatically generates physical database schemas from application-level entity mappings.
  • Lifecycle Merge Operations - Manages object lifecycles through merge operations, entity refreshing, and cascading database operations.
  • Persistence Performance Tunings - Offers a set of tools to tune data access patterns and caching strategies to improve retrieval speeds.
  • Entity Graph Fetching - Provides strategies for defining sets of attributes to be retrieved in a single query to minimize database round-trips.
  • Traffic Routing - Implements logic to distribute database requests between read and write replicas to improve scalability.
  • DDL Script Generators - Analyzes entity metadata to produce DDL scripts that automatically align the database structure with the domain model.
  • Database Schema Scripting - Generates SQL DDL scripts to automatically create or update the relational database structure based on model changes.
  • Row-Level Security - Provides capabilities to restrict access to individual data records based on user identity or permissions.
  • Database Concurrency Control - Implements locking scopes and timeout configurations to manage concurrent access to database records.
  • Data Modification Auditing - Tracks modifications to data over time by handling temporal data and maintaining a history of changes.
  • Data Layer Testing - Provides a comprehensive set of specialized annotations and utilities for verifying data persistence and retrieval logic.
  • Specification Compliance Testing - Provides a tool to run standardized test suites to confirm a database adheres to industry specifications.
  • Object Relational Mapping - Core object-relational mapping functionality for Java.
  • Persistence Frameworks - Mature object-relational mapping framework for Java.

Star history

Star history chart for hibernate/hibernate-ormStar history chart for hibernate/hibernate-orm

AI search

Explore more awesome repositories

Describe what you need in plain English — the AI ranks thousands of curated open-source projects by relevance.

Start searching with AI

Frequently asked questions

What does hibernate/hibernate-orm do?

Hibernate ORM is a Java object-relational mapper and a full implementation of the Jakarta Persistence API. It serves as a SQL database abstraction layer that translates Java object models into relational database schemas to manage data persistence and lifecycles.

What are the main features of hibernate/hibernate-orm?

The main features of hibernate/hibernate-orm are: Object-Relational Mapping, Persistence Unit Managers, Persistence State Tracking, Database Abstraction Layers, Data Tenant Isolators, Complex Querying Techniques, Database Transaction Management, Write-Behind Change Tracking.

What are some open-source alternatives to hibernate/hibernate-orm?

Open-source alternatives to hibernate/hibernate-orm include: doctrine/orm — Doctrine ORM is a PHP object-relational mapper that connects application objects to relational database tables. It… go-gorm/gorm — GORM is a developer-focused object-relational mapping library for Go that provides a comprehensive data persistence… dotnet/efcore — Entity Framework Core is an object-relational mapper that enables developers to interact with database systems using… go-gorp/gorp — Gorp is a lightweight object-relational mapper for Go that binds structs to relational database tables. It functions… doctrine/doctrinebundle — DoctrineBundle is a Symfony integration that configures and manages the Doctrine Object Relational Mapper and Database… coleifer/peewee — Peewee is a SQL object-relational mapper and query builder that provides an object-oriented interface for mapping…

Open-source alternatives to Hibernate Orm

Similar open-source projects, ranked by how many features they share with Hibernate Orm.
  • doctrine/ormdoctrine avatar

    doctrine/orm

    10,172View on GitHub↗

    Doctrine ORM is a PHP object-relational mapper that connects application objects to relational database tables. It uses the data mapper and identity map patterns to decouple the in-memory object model from the database schema, allowing developers to manage data persistence without writing manual SQL. The project features a dedicated object-oriented query language and programmatic builder for retrieving data based on entities rather than tables. It implements a unit-of-work system to track object changes during a request and synchronize them via atomic transactions. The capability surface inc

    PHPhacktoberfest
    View on GitHub↗10,172
  • go-gorm/gormgo-gorm avatar

    go-gorm/gorm

    39,798View on GitHub↗

    GORM is a developer-focused object-relational mapping library for Go that provides a comprehensive data persistence framework. It serves as a database access layer, allowing developers to map application structures to database tables and perform CRUD operations using a fluent, type-safe query builder instead of writing raw SQL. The library distinguishes itself through its association-aware persistence, which automatically tracks and synchronizes complex entity relationships during database operations. It utilizes a driver-agnostic interface to maintain consistent behavior across various stora

    Gogogolanggorm
    View on GitHub↗39,798
  • dotnet/efcoredotnet avatar

    dotnet/efcore

    14,587View on GitHub↗

    Entity Framework Core is an object-relational mapper that enables developers to interact with database systems using strongly-typed code. It serves as a comprehensive data access framework, providing a unified interface for mapping application objects to relational and non-relational database schemas while managing the lifecycle of data operations through a central context. The project distinguishes itself through a provider-based architecture that decouples core data access logic from specific database engines, allowing for consistent interaction across diverse storage systems. It features a

    C#aspnet-productc-sharpdatabase
    View on GitHub↗14,587
  • go-gorp/gorpgo-gorp avatar

    go-gorp/gorp

    3,751View on GitHub↗

    Gorp is a lightweight object-relational mapper for Go that binds structs to relational database tables. It functions as a relational data mapper and SQL dialect abstraction layer, automating the translation between application data and relational rows. The project provides a translation layer that generates vendor-specific SQL for PostgreSQL, MySQL, SQLite, Oracle, and SQL Server. It distinguishes itself by implementing optimistic locking via version columns to prevent concurrent update conflicts and providing a database schema generator to create tables and indexes from object definitions.

    Go
    View on GitHub↗3,751
See all 30 alternatives to Hibernate Orm→