• Stars
    star
    5,676
  • Rank 6,853 (Top 0.2 %)
  • Language
    Java
  • Created over 13 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Hibernate's core Object/Relational Mapping functionality

Hibernate ORM is a powerful object/relational mapping solution for Java, and makes it easy to develop persistence logic for applications, libraries, and frameworks.

Hibernate implements JPA, the standard API for object/relational persistence in Java, but also offers an extensive set of features and APIs which go beyond the specification.

See Hibernate.org for more information.

Build Status Revved%20up%20by Develocity 06A0CE?logo=Gradle&labelColor=02303A

Continuous Integration

Hibernate uses both Jenkins and GitHub Actions for its CI needs. See

Building from sources

The build requires at least Java 11 and at most Java 17.

Hibernate uses Gradle as its build tool. See the Gradle Primer section below if you are new to Gradle.

Contributors should read the Contributing Guide.

See the guides for setting up IntelliJ or Eclipse as your development environment.

Gradle Primer

The Gradle build tool has amazing documentation. 2 in particular that are indispensable:

  • Gradle User Guide is a typical user guide in that it follows a topical approach to describing all of the capabilities of Gradle.

  • Gradle DSL Guide is unique and excellent in quickly getting up to speed on certain aspects of Gradle.

We will cover the basics developers and contributors new to Gradle need to know to get productive quickly.

Note
The project defines a Gradle Wrapper. The rest of the section will assume execution through the wrapper.

Executing Tasks

Gradle uses the concept of build tasks (equivalent to Ant targets or Maven phases/goals). You can get a list of available tasks via

gradle tasks

To execute a task across all modules, simply perform that task from the root directory. Gradle will visit each sub-project and execute that task if the sub-project defines it. To execute a task in a specific module you can either:

  1. cd into that module directory and execute the task

  2. name the "task path". For example, to run the tests for the hibernate-core module from the root directory you could say gradle hibernate-core:test

Common tasks

The common tasks you might use in building Hibernate include:

  • build - Assembles (jars) and tests this project

  • compile - Performs all compilation tasks including staging resources from both main and test

  • jar - Generates a jar archive with all the compiled classes

  • test - Runs the tests

  • publishToMavenLocal - Installs the project jar to your local maven cache (aka ~/.m2/repository). Note that Gradle never uses this, but it can be useful for testing your build with other local Maven-based builds.

  • clean - Cleans the build directory

Testing and databases

Testing against a specific database can be achieved in 2 different ways:

Using the "Matrix Testing Plugin" for Gradle.

Coming later…

Using "profiles"

The Hibernate build defines several database testing "profiles" in databases.gradle. These profiles can be activated by name using the db build property which can be passed either as a JVM system prop (-D) or as a Gradle project property (-P). Examples below use the Gradle project property approach.

gradle clean build -Pdb=pgsql

To run a test from your IDE, you need to ensure the property expansions happen. Use the following command:

gradle clean compile -Pdb=pgsql

NOTE: If you are running tests against a JDBC driver that is not available via Maven central be sure to add these drivers to your local Maven repo cache (~/.m2/repository) or (better) add it to a personal Maven repo server

Running database-specific tests from the IDE using "profiles"

You can run any test on any particular database that is configured in a databases.gradle profile.

All you have to do is run the following command:

./gradlew setDataBase -Pdb=pgsql

or you can use the shortcut version:

./gradlew sDB -Pdb=pgsql

You can do this from the module which you are interested in testing or from the hibernate-orm root folder.

Afterward, just pick any test from the IDE and run it as usual. Hibernate will pick the database configuration from the hibernate.properties file that was set up by the setDataBase Gradle task.

Starting test databases locally as docker containers

You don’t have to install all databases locally to be able to test against them in case you have docker available. The script docker_db.sh allows you to start a pre-configured database which can be used for testing.

All you have to do is run the following command:

./docker_db.sh postgresql

omitting the argument will print a list of possible options.

When the database is properly started, you can run tests with special profiles that are suffixed with _ci e.g. pgsql_ci for PostgreSQL. By using the system property dbHost you can configure the IP address of your docker host.

The command for running tests could look like the following:

./gradlew test -Pdb=pgsql_ci "-DdbHost=192.168.99.100"

The following table illustrates a list of commands for various databases that can be tested locally.

Database docker_db.sh Gradle command

H2

-

./gradlew test -Pdb=h2

HSQLDB

-

./gradlew test -Pdb=hsqldb

Apache Derby

-

./gradlew test -Pdb=derby

MySQL

./docker_db.sh mysql

./gradlew test -Pdb=mysql_ci

MariaDB

./docker_db.sh mariadb

./gradlew test -Pdb=mariadb_ci

PostgreSQL

./docker_db.sh postgresql

./gradlew test -Pdb=pgsql_ci

EnterpriseDB

./docker_db.sh edb

./gradlew test -Pdb=edb_ci

Oracle XE

./docker_db.sh oracle

./gradlew test -Pdb=oracle_free_ci

DB2

./docker_db.sh db2

./gradlew test -Pdb=db2_ci

SQL Server

./docker_db.sh mssql

./gradlew test -Pdb=mssql_ci

Sybase ASE (jTDS)

./docker_db.sh sybase

./gradlew test -Pdb=sybase_ci

Sybase ASE (jConnect)

./docker_db.sh sybase

./gradlew test -Pdb=sybase_jconn_ci

SAP HANA

./docker_db.sh hana

./gradlew test -Pdb=hana_ci

CockroachDB

./docker_db.sh cockroachdb

./gradlew test -Pdb=cockroachdb

TiDB

./docker_db.sh tidb

./gradlew test -Pdb=tidb

To stop a container started by docker, use the command

docker stop $container_name
NOTE

Substitute podman command for docker if using podman

E.g., to stop the mariadb container

docker stop mariadb

More Repositories

1

hibernate-validator

Hibernate Validator - Jakarta Bean Validation Reference Implementation
Java
1,148
star
2

hibernate-search

Hibernate Search: full-text search for domain model
Java
484
star
3

hibernate-reactive

A reactive API for Hibernate ORM, supporting non-blocking database drivers and a reactive style of interaction with the database.
Java
420
star
4

hibernate-ogm

Hibernate OGM - Domain model persistence for NoSQL datastores
Java
320
star
5

hibernate-tools

Code generation, reverse engineering, ant task and more tools for Hibernate Core
Java
291
star
6

hibernate-demos

Repository for demos of various Hibernate projects
Java
270
star
7

hibernate-shards

Horizontal partitioning for Hibernate O/RM
Java
91
star
8

query-validator

Compile time validation for HQL and JPQL queries in Java code
Java
81
star
9

hibernate-test-case-templates

Templates and examples to report issues to Hibernate
Java
58
star
10

gradle-maven-publish-auth

Gradle plugin for managing authentication of upload tasks
Java
42
star
11

hibernate-metamodelgen

Annotation Processor to generate JPA 2 static metamodel classes
Java
33
star
12

hibernate-jpa-api

Clean-room definition of JPA APIs intended for transitory use in Hibernate JPA development
32
star
13

hibernate-hql-parser

New experimental parser for JP-QL queries
Java
30
star
14

hibernate-commons-annotations

Hibernate Commons Annotations project
Java
28
star
15

hibernate.org

Source for the hibernate.org website
JavaScript
27
star
16

hibernate-ogm-ignite

Hibernate OGM dialect for Apache Ignite
Java
16
star
17

hibernate-ogm-cassandra

Hibernate OGM integration with Cassandra
Java
10
star
18

hibernate.github.io

Legacy GitHub Pages deployment for https://hibernate.org. This repository is obsolete and is not longer used.
HTML
8
star
19

hibernate-infra

Configuration of Hibernate project infrastructure: CI, websites, bot deployment.
Shell
8
star
20

hibernate-semantic-query

Semantic query model and interpreter for HQL/JPQL and JPA Criteria queries
Java
8
star
21

hibernate-ide-codestyles

IDE code-styles for Hibernate projects
7
star
22

lucene-jbossmodules

Repackaging the Apache Lucene libraries to be deployed as modules in WildFly
Java
6
star
23

hibernate-ogm-redis

Hibernate OGM integration with Redis
Java
6
star
24

in.relation.to

Source for the in.relation.to website
HTML
5
star
25

hibernate-matrix-testing

Support for running tests against a number of database profiles
Java
4
star
26

version-injection-plugin

Gradle plugin used by Hibernate to inject project version into compiled classes
Java
4
star
27

hibernate-presentations

Hibernate presentations
Ruby
4
star
28

jakarta-transformer-plugin

Java
3
star
29

hibernate-jenkins-pipeline-helpers

Hibernate helpers for Jenkins pipelines
Groovy
3
star
30

gradle-xjc-plugin

A Gradle plugin for performing XJC for generating a JAXB binding model from an XSD
Java
3
star
31

quarkus-local-cache

A Hibernate Cache optimised for Quarkus
3
star
32

beanvalidation-benchmark

A benchmark for Bean Validation implementations
Java
3
star
33

hibernate-asciidoctor-extensions

Asciidoctor extensions developed for the Hibernate projects
Java
3
star
34

gson-jbossmodules

Repackaging the Gson libraries to be deployed as modules in WildFly
Java
2
star
35

hibernate-ogm-ehcache

Hibernate OGM integration with EhCache
Java
2
star
36

hibernate-ogm-couchdb

Hibernate OGM integration with CouchDB
Java
2
star
37

elasticsearch-client-jbossmodules

Repackaging the Elasticsearch client libraries to be deployed as modules in WildFly
Java
2
star
38

hibernate-noorm-release-scripts

Older release scripts for Hibernate projects (except Hibernate ORM). DEPRECATED: Use https://github.com/hibernate/hibernate-release-scripts instead
Shell
2
star
39

hibernate-jdocbook-style

Documentation style
XSLT
1
star
40

aws-v4-signer-java-jbossmodules

Java
1
star
41

hibernate-release-scripts

Shell
1
star
42

hibernate-search-benchmark

Benchmarks for performance testing of Hibernate Search.
Java
1
star
43

database-profile-plugin

Support for testing against multiple databases via profiles
Java
1
star
44

hibernate-search-6-poc

Content was moved to https://github.com/hibernate/hibernate-search/. See readme for more information.
1
star
45

hibernate-github-bot

A bot to handle GitHub events from repositories of the Hibernate organization
Java
1
star
46

docs.hibernate.org

Documentation website for the Hibernate projects
1
star