hapi-fhir/hapi-fhir-cli/hapi-fhir-cli-jpaserver
Qingyixia 2be9e89727
Overlapping SearchParameter with the same code and base are not allowed (#4253)
* Overlapping SearchParameter with the same code and base are not allowed

* Fix existing tests according to changes

* Cleanup dead code and remove related tests

* Version Bump
2022-11-10 08:19:40 -08:00
..
src Add R4B Support (#4150) 2022-10-20 13:57:06 -07:00
.gitignore Add eclipse files 2016-08-06 15:48:29 -04:00
pom.xml Overlapping SearchParameter with the same code and base are not allowed (#4253) 2022-11-10 08:19:40 -08:00
readme.intellij.txt Move CLI App 2016-01-28 11:36:59 -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.