- fixed issue on ui regarding pagination of results by configuring refuseToFetchThirdPartyUrls
- updated fhir version to R4 and used mysql as datasource with docs updated - transferred jetty plugin to be viewable on intellij - disabled oss snapshots - replaced corsFilter based on new hapi docs
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
|
||||
# Adjust this to set the version of FHIR supported by this server. See
|
||||
# FhirVersionEnum for a list of available constants.
|
||||
fhir_version=DSTU3
|
||||
fhir_version=R4
|
||||
|
||||
# This is the address that the FHIR server will report as its own address.
|
||||
# If this server will be deployed (for example) to an internet accessible
|
||||
@@ -25,16 +25,16 @@ logger.name=fhirtest.access
|
||||
logger.format=Path[${servletPath}] Source[${requestHeader.x-forwarded-for}] Operation[${operationType} ${operationName} ${idOrResourceName}] UA[${requestHeader.user-agent}] Params[${requestParameters}] ResponseEncoding[${responseEncodingNoDefault}]
|
||||
logger.error_format=ERROR - ${requestVerb} ${requestUrl}
|
||||
logger.log_exceptions=true
|
||||
datasource.driver=org.apache.derby.jdbc.EmbeddedDriver
|
||||
datasource.url=jdbc:derby:directory:target/jpaserver_derby_files;create=true
|
||||
datasource.username=
|
||||
datasource.password=
|
||||
datasource.driver=com.mysql.cj.jdbc.Driver
|
||||
datasource.url=jdbc:mysql://localhost:3306/fhir_r4
|
||||
datasource.username=fhirUser
|
||||
datasource.password=fhirPass
|
||||
server.name=Local Tester
|
||||
server.id=home
|
||||
test.port=
|
||||
subscription.email.enabled=true
|
||||
subscription.resthook.enabled=true
|
||||
hibernate.dialect=ca.uhn.fhir.jpa.util.DerbyTenSevenHapiFhirDialect
|
||||
hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
|
||||
hibernate.search.model_mapping=ca.uhn.fhir.jpa.search.LuceneSearchMappingFactory
|
||||
hibernate.format_sql=false
|
||||
hibernate.show_sql=false
|
||||
@@ -47,3 +47,4 @@ hibernate.cache.use_minimal_puts=false
|
||||
hibernate.search.default.directory_provider=filesystem
|
||||
hibernate.search.default.indexBase=target/lucenefiles
|
||||
hibernate.search.lucene_version=LUCENE_CURRENT
|
||||
tester.config.refuse_to_fetch_third_party_urls=false
|
||||
|
||||
Reference in New Issue
Block a user