5831cbedf5
* Add unit tests and supporting classes from gitlab issue. * Commit with changes thus far to be reviewed. Namely, add savepoint capabilities to HapiTransactionService, inject HapiTransactionService into CascadingDeleteInterceptor, add savepoint capabilities to the TransactionDetails, and catch an Exception in BaseHapiFhirResourceDao.delete() then rollback to the checkpoint. * Fix compile error. * hapi transaction service test * hapi transaction service test * hapi transaction service test * First draft of RetryTemplate and flush() logic. Try unit testing with PointcutLatch. * hapi transaction service test * Latest changes including moving RetryTemplate, cleaning up unit tests. * First attempt at correct design. Fix compile errors. * Add failed rollback savepoint test. * fix propogation * interesting test failure in SafeDeleterTest * Latest code * move delete * test passing * all tests pass * yay we're done just cleanup * First round of cleanup: Get rid of all exploratory logging, remove unneeded dependencies, move creation of RetryTemplate to SafeDeleter. * More cleanup. Add changelog. * Bump to 6.2.0-PRE13-SNAPSHOT. * Code review feedback: Refactor SafeDeleter to a service and bean. Add comments. * Code review feedback: Comments on unit test assertions. * Code review feedback: Rename SafeDeleterSvc to ThreadSafeResourceDeleterSvc. Add javadoc. Add logger to DelayListener. Remove useless commented out code. * Fix unit test failure in CascadingDeleteInterceptorTest. Co-authored-by: Ken Stevens <ken@smilecdr.com> |
||
---|---|---|
.. | ||
src | ||
.gitignore | ||
pom.xml | ||
readme.intellij.txt |
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.