* Boyscouting: Docker conventions
* Boyscouting: JUnit 5 conventions ("It is generally recommended to omit the public modifier for test classes, test methods, and lifecycle methods unless there is a technical reason for doing so)"
* Boyscouting: typo in RepositoryValidationInterceptorFactoryDstu3
* Boyscouting: use List.of instead of Guava; use StandardCharsets instead of Guava; remove unused imports
---------
Co-authored-by: Gerlach, Winfried <Winfried.Gerlach@draeger.com>
* Did restructuring and made repo validation interceptor an optional bean instead as it makes it more clean
* Moved construction of FHIR servlet into a bean for better reuse of others that would like to depend directly on this library
* Disabled default validation enabled
* Add configuration flag to enable storing of resources in lucene index
* Fix build issue
* Fix code review suggestions
Co-authored-by: Jaison B <jaison.baskaran@smilecdr.com>
* master:
Update application.yaml
Bumped version of Spring Boot in order to fix same issue as https://github.com/Haulmont/jmix-security/issues/90
Upgraded to 5.6.0 Subscription tests fail ...
Added OpenAPI / Swagger option
simplified helm chart
build ARM-compatible images
bumped dependencies to latest
only push build images to DockerHub
Adds ability to change HAPI FHIR JPA server's port with the environment variable server.port
Adds ability to control the number of executor threads through environment variables server.tomcat.max-threads and server.tomcat.min-spare-threads. There is not a breaking change and does not affect the function of the JPA server unless these environment variables are set.
Adds ability to use delete-expunge operations to the JPA Starter Server.
# Conflicts:
# pom.xml
# src/main/java/ca/uhn/fhir/jpa/starter/AppProperties.java
# src/main/java/ca/uhn/fhir/jpa/starter/Application.java
# src/main/java/ca/uhn/fhir/jpa/starter/EnvironmentHelper.java
# src/main/java/ca/uhn/fhir/jpa/starter/FhirServerConfigCommon.java
# src/main/java/ca/uhn/fhir/jpa/starter/FhirServerConfigDstu2.java
# src/main/java/ca/uhn/fhir/jpa/starter/FhirServerConfigDstu3.java
# src/main/java/ca/uhn/fhir/jpa/starter/FhirServerConfigR4.java
# src/main/java/ca/uhn/fhir/jpa/starter/FhirServerConfigR5.java
Removing unused `allow_placeholder_references` property that causes confusion with `auto_create_placeholder_references`
Improving `.dockerignore` so that it ignores specific target files/directories that are generated by MVN/java, but not the .war file (so that compiled .war files can be easily turned into a docker image)
- Added database connection pool size configuration parameter (spring.datasource.hikari.maximum-pool-size)
- Fixed a bug in parsing elastic rest_url for all FHIR versions except for R4, which was correct.