File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed
java/ca/uhn/fhir/jpa/starter Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ public class AppProperties {
37
37
private Boolean allow_override_default_search_params = true ;
38
38
private Boolean auto_create_placeholder_reference_targets = false ;
39
39
private final Set <String > auto_version_reference_at_paths = new HashSet <>();
40
+ private Boolean language_search_parameter_enabled = false ;
40
41
private Boolean dao_scheduling_enabled = true ;
41
42
private Boolean delete_expunge_enabled = false ;
42
43
private Boolean enable_index_missing_fields = false ;
@@ -609,6 +610,14 @@ public void setApp_content_path(String app_content_path) {
609
610
this .app_content_path = app_content_path ;
610
611
}
611
612
613
+ public Boolean getLanguage_search_parameter_enabled () {
614
+ return language_search_parameter_enabled ;
615
+ }
616
+
617
+ public void setLanguage_search_parameter_enabled (Boolean language_search_parameter_enabled ) {
618
+ this .language_search_parameter_enabled = language_search_parameter_enabled ;
619
+ }
620
+
612
621
public static class Cors {
613
622
private Boolean allow_Credentials = true ;
614
623
private List <String > allowed_origin = List .of ("*" );
Original file line number Diff line number Diff line change @@ -111,6 +111,7 @@ public JpaStorageSettings jpaStorageSettings(AppProperties appProperties) {
111
111
jpaStorageSettings .setSchedulingDisabled (!appProperties .getDao_scheduling_enabled ());
112
112
jpaStorageSettings .setDeleteExpungeEnabled (appProperties .getDelete_expunge_enabled ());
113
113
jpaStorageSettings .setExpungeEnabled (appProperties .getExpunge_enabled ());
114
+ jpaStorageSettings .setLanguageSearchParameterEnabled (appProperties .getLanguage_search_parameter_enabled ());
114
115
if (appProperties .getSubscription () != null
115
116
&& appProperties .getSubscription ().getEmail () != null )
116
117
jpaStorageSettings .setEmailFromAddress (
Original file line number Diff line number Diff line change
1
+ # Uncomment the following lines to enable the fhir endpoint to be available at /example/path/fhir instead of /fhir
2
+ # server:
3
+ # servlet:
4
+ # context-path: /example/path
1
5
# Adds the option to go to eg. http://localhost:8080/actuator/health for seeing the running configuration
2
6
# see https://docs.spring.io/spring-boot/docs/current/reference/html/actuator.html#actuator.endpoints
3
7
management :
@@ -11,8 +15,8 @@ spring:
11
15
# allow-bean-definition-overriding: true
12
16
flyway :
13
17
enabled : false
14
- check-location : false
15
18
baselineOnMigrate : true
19
+ fail-on-missing-locations : false
16
20
datasource :
17
21
# url: 'jdbc:h2:file:./target/database/h2'
18
22
url : jdbc:h2:mem:test_mem
@@ -127,6 +131,7 @@ hapi:
127
131
advanced_lucene_indexing : false
128
132
bulk_export_enabled : false
129
133
bulk_import_enabled : false
134
+ # language_search_parameter_enabled: true
130
135
# enforce_referential_integrity_on_delete: false
131
136
# This is an experimental feature, and does not fully support _total and other FHIR features.
132
137
# enforce_referential_integrity_on_delete: false
You can’t perform that action at this time.
0 commit comments