From 24b9a22ad398615526ae4fc9914b5306cf462a5a Mon Sep 17 00:00:00 2001 From: "b.debeaubien" Date: Fri, 20 Feb 2015 15:12:11 -0500 Subject: [PATCH] Simple instructions on how to deploy hapi-fhir-jpaserver-example under tomcat from intellij --- .../readme.intellij.txt | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 hapi-fhir-jpaserver-example/readme.intellij.txt diff --git a/hapi-fhir-jpaserver-example/readme.intellij.txt b/hapi-fhir-jpaserver-example/readme.intellij.txt new file mode 100644 index 00000000000..049d5d341a5 --- /dev/null +++ b/hapi-fhir-jpaserver-example/readme.intellij.txt @@ -0,0 +1,31 @@ +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. \ No newline at end of file