hapi-fhir/hapi-fhir-jpaserver-example
jamesagnew a15ed8e944 Work on subscriptions, and correct an issue with DateRangeParam where comparators get ignored 2015-09-23 08:36:11 -04:00
..
src Work on subscriptions, and correct an issue with DateRangeParam where comparators get ignored 2015-09-23 08:36:11 -04:00
.classpath Fix #206 - Don't require hl7org structures to start JPA server 2015-08-19 07:47:45 -04:00
.gitignore Update license file generation and gitignores 2015-03-26 11:57:07 -04:00
.project Work on JPA example 2015-02-03 17:53:22 -05:00
pom.xml Version bump to 1.3-SNAPSHOT 2015-09-19 11:00:57 -04:00
readme.intellij.txt Simple instructions on how to deploy hapi-fhir-jpaserver-example under tomcat from intellij 2015-02-20 15:12:11 -05:00

readme.intellij.txt

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

Install Tomcat.

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/base/Patient

You should get an empty bundle back.