https://github.com/graceframework/grace-data-hibernate
Provides integration between Grace and Hibernate through GORM
https://github.com/graceframework/grace-data-hibernate
data-access-library gorm graceframework groovy hibernate
Last synced: 3 months ago
JSON representation
Provides integration between Grace and Hibernate through GORM
- Host: GitHub
- URL: https://github.com/graceframework/grace-data-hibernate
- Owner: graceframework
- License: apache-2.0
- Created: 2023-11-29T16:54:51.000Z (almost 2 years ago)
- Default Branch: 2023.3.x
- Last Pushed: 2025-06-20T04:18:10.000Z (4 months ago)
- Last Synced: 2025-06-20T05:22:00.479Z (4 months ago)
- Topics: data-access-library, gorm, graceframework, groovy, hibernate
- Language: Java
- Homepage: https://graceframework.org/grace-data-hibernate/latest/
- Size: 6.07 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/graceframework/grace-data-hibernate/actions?query=workflow%3A%Grace+CI%22)
[](https://opensource.org/licenses/Apache-2.0)
[](https://search.maven.org/search?q=g:org.graceframework.plugins)
[](https://graceframework.org/grace-data-hibernate/latest/)
[](https://x.com/graceframework)[](https://groovy-lang.org/releasenotes/groovy-4.0.html)
[](https://github.com/graceframework/grace-framework/releases/tag/v2023.3.0)
[](https://github.com/spring-projects/spring-boot/releases/tag/v3.3.13)# Grace Data for Hibernate
This project implements [GORM](https://github.com/graceframework/grace-data) for the [Hibernate ORM](https://hibernate.org/orm/).
> [!IMPORTANT]
> Currently, this plugin has been migrate to Jakarta Namespace, and support Hibernate 5.6. Grace Framework and Grace Data 2024.0 will upgrade to Hibernate 6.x.From version 2023.0.0-M5, this plugin has been renamed from the original `hibernate5` to `hibernate`.
```gradle
dependencies {
// Before 2023.0.0-M5
implementation "org.graceframework:gorm-hibernate5-spring-boot"
implementation "org.graceframework:grace-datastore-gorm-hibernate5"
implementation "org.graceframework.plugins:hibernate5"
implementation "org.hibernate:hibernate-core-jakarta:5.6.15.Final"// After 2023.0.0-M5
implementation "org.graceframework:grace-datastore-gorm-hibernate"
implementation "org.graceframework.plugins:hibernate"
implementation "org.hibernate:hibernate-core-jakarta:5.6.15.Final"
}
```## Versions
To make it easier for users to use and upgrade, Grace Data Hibernate adopts a version policy consistent with the [Grace Framework](https://github.com/graceframework/grace-framework).
| GORM Hibernate Version | Grace Version |
|------------------------|---------------|
| 2023.3.x | 2023.3.x |
| 2023.2.x | 2023.2.x |
| 2023.1.x | 2023.1.x |
| 2023.0.x | 2023.0.x |
| 2022.2.x | 2022.2.x |
| 2022.1.x | 2022.1.x |
| 2022.0.x | 2022.0.x |## Ducumentation
* [2023.3.x](https://graceframework.org/grace-data-hibernate/2023.3.x/)
## License
This plugin is available as open source under the terms of the [APACHE LICENSE, VERSION 2.0](http://apache.org/Licenses/LICENSE-2.0)
## Links
- [Grace Framework](https://github.com/graceframework/grace-framework)
- [Hibernate ORM](https://hibernate.org/orm/)