blob: e90209d742a611303075a3389c8d42ca3adea504 [file] [log] [blame]
== FHIR Example - CDI
=== Introduction
This is an example application of the `+camel-fhir+` component.
Well be using `+camel-cdi+` as well for an easy setup.
This example will read HL7V2 patients from a directory and convert them
to FHIR dtsu3 patients and upload them to a configured FHIR server.
=== Prerequisites
The example assumes you have a running FHIR server at your disposal. You
may use
https://github.com/HL7-DaVinci/test-ehr[hapi-fhir-jpa-server-example].
By default, the example uses
`+http://localhost:8080/hapi-fhir-jpaserver-example/baseDstu3+` as the
FHIR server URL, DSTU3 as the FHIR version and
`+target/work/fhir/input+` as the directory to look for HL7V2 patients.
However, you can edit the `+application.properties+` file to override
the defaults and provide your own configuration.
=== Build
You can build this example using:
[source,sh]
----
$ mvn package
----
=== Run
You can run this example using:
[source,sh]
----
$ mvn camel:run
----
When the Camel application runs, you should see a folder created under
`+target/work/fhir/input+`. Copy the file `+hl7v2.patient+` located in
the `+data+` folder into it. You should see the following output:
....
2018-07-04 16:22:52,189 [cdi.Main.main()] INFO DefaultCamelContext - Route: fhir-example started and consuming from: file://target/work/fhir/input
2018-07-04 16:22:52,189 [cdi.Main.main()] INFO DefaultCamelContext - Total 1 routes, of which 1 are started
2018-07-04 16:22:52,190 [cdi.Main.main()] INFO DefaultCamelContext - Apache Camel 2.22.0-SNAPSHOT (CamelContext: camel-example-fhir-cdi) started in 0.636 seconds
2018-07-04 16:22:52,203 [cdi.Main.main()] INFO Bootstrap - WELD-ENV-002003: Weld SE container 357a3776-d8cd-40be-abb4-ad91a43c9755 initialized
2018-07-04 16:22:57,705 [work/fhir/input] INFO fhir-example - Converting hl7v2.patient
2018-07-04 16:22:58,176 [work/fhir/input] INFO fhir-example - Inserting Patient: {"resourceType":"Patient","id":"100005056","name":[{"family":"Freeman","given":["Vincent"]}]}
2018-07-04 16:22:58,669 [ #3 - CamelFhir] INFO fhir-example - Patient creating successfully: true
....
The Camel application can be stopped pressing ctrl+c in the shell.
=== Help and contributions
If you hit any problem using Camel or have some feedback, then please
https://camel.apache.org/community/support/[let us know].
We also love contributors, so
https://camel.apache.org/community/contributing/[get involved] :-)
The Camel riders!