From b6c1b9f47c17b468e68edc4dd605ad0660f58ce3 Mon Sep 17 00:00:00 2001 From: Juvar Abrera Date: Sun, 5 Feb 2023 20:47:08 +0800 Subject: [PATCH] docs: Explicitly set hibnerate.search.enabled to false if database is postgresql --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 123d1fc..b17e46b 100644 --- a/README.md +++ b/README.md @@ -197,9 +197,10 @@ spring: jpa: properties: hibernate.dialect: ca.uhn.fhir.jpa.model.dialect.HapiFhirPostgres94Dialect -``` + hibernate.search.enabled: false -Because the integration tests within the project rely on the default H2 database configuration, it is important to either explicity skip the integration tests during the build process, i.e., `mvn install -DskipTests`, or delete the tests altogether. Failure to skip or delete the tests once you've configured PostgreSQL for the datasource.driver, datasource.url, and hibernate.dialect as outlined above will result in build errors and compilation failure. + # Then comment all hibernate.search.backend.* +``` ### Microsoft SQL Server configuration