docs: Explicitly set hibnerate.search.enabled to false if database is postgresql

This commit is contained in:
Juvar Abrera
2023-02-05 20:47:08 +08:00
committed by Jens Kristian Villadsen
parent c88d26d2e5
commit b6c1b9f47c

View File

@@ -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