hapi-fhir/example-projects/hapi-fhir-jpaserver-example...
Joel Schneider 15577d8414 formatting tweak (in additional files) - use "text-danger" style for "This is not a production server!" warning 2020-04-21 15:13:09 -04:00
..
src formatting tweak (in additional files) - use "text-danger" style for "This is not a production server!" warning 2020-04-21 15:13:09 -04:00
pom.xml Roll back derby upgrade 2019-06-08 09:27:28 -04:00
readme.intellij.txt Move example project to example-projects directory 2018-05-28 06:01:13 -04:00

readme.intellij.txt

Running hapi-fhir-jpaserver-example in Tomcat from IntelliJ

Install Tomcat.
Install mvn
run `mvn clean install`

Make sure you have Tomcat set up in IntelliJ.
File->Settings->Build, Execution, Deployment->Application Servers
Click +
Select "Tomcat Server"
Enter the path to your tomcat deployment for both Tomcat Home (IntelliJ will fill in base directory for you)

Add a Run Configuration for running hapi-fhir-jpaserver-example under Tomcat
Run->Edit Configurations
Click the green +
Select Tomcat Server, Local
Change the name to whatever you wish
Uncheck the "After launch" checkbox
On the "Deployment" tab, click the green +
Select "Artifact"
Select "hapi-fhir-jpaserver-example:war"
In "Application context" type /hapi

Run the configuration
You should now have an "Application Servers" in the list of windows at the bottom.
Click it.
Select your server, and click the green triangle (or the bug if you want to debug)
Wait for the console output to stop

Point your browser (or fiddler, or what have you) to 
http://localhost:8080/hapi/baseDstu3/Patient

You should get an empty bundle back.