Does there exist a barebones FHIRStarter project that is combination of a HAPI Simple Server and Spring Boot?
My desire is to create a simple server that fronts a proprietary Oracle database and serves up the data as FHIR JSON on the fly. I'm not planning to persist the data (so I don't need a HAPI JPAServer) and when I try to use the Jersey server as a starting point, I run into trouble creating multiple searches in the provider (see e.g.
https://groups.google.com/d/msg/hapi-fhir/gCNeR13JvTg/9QO1_XPCBgAJ)
I would like to use various Spring Boot features, such as the DataSources and run-time profiles. I like the way Spring is auto-configured and modularized in the FHIRStarter projects above, but have been unsuccessful in wrangling the POMs etc to become Spring Boot and Simple server.
Any help is appreciated.