2 مستودعات
Frameworks that automate the mapping between application objects and relational database tables.
Distinct from Java Frameworks: Distinct from general Java Frameworks: focuses specifically on the persistence layer and ORM capabilities.
Explore 2 awesome GitHub repositories matching software engineering & architecture · Object-Relational Mapping Frameworks. Refine with filters or upvote what's useful.
Ebean is a Java object-relational mapping framework designed to simplify database persistence through automated query generation, schema migration, and transaction management. It uses metadata-driven mapping and bytecode enhancement to bridge the gap between application objects and relational database tables, providing a persistent layer that handles complex data interactions while maintaining consistency across unit-of-work boundaries. The framework distinguishes itself through its focus on developer productivity and performance optimization. It provides type-safe query builders that generat
Provides a persistence layer that maps objects to relational databases while automating query generation and schema migration.
This project is a Java-based object-relational mapping framework that utilizes the active record pattern to simplify database interactions. It provides a comprehensive data access layer that binds database tables directly to application objects, enabling developers to perform CRUD operations, manage complex entity relationships, and execute queries through a fluent, type-safe interface. Designed for integration with Spring Boot, the framework abstracts database complexities while maintaining support for native compilation and asynchronous execution. The framework distinguishes itself through
Maps relational database tables to Java objects using annotations to simplify data interaction and persistence.