我对hapi-fhir非常陌生,我从下面的链接下载了源码(hapi-fhir-5.2.0-标准发行版)。我正在尝试将服务器部署到本地主机上。
https://github.com/hapifhir/hapi-fhir/releases/tag/v5.2.0
操作系统:Ubuntu16.04 java版本: 1.8.0_275
请帮助我完成部署过程?
发布于 2021-02-06 15:40:00
如果您只是想使用FHIR服务器,我建议您使用公共参考服务器来学习资源、搜索参数等,例如http://hapi.fhir.org/baseR4/
如果您确实需要在本地开始,请尝试jpa服务器的Docker安装:https://github.com/hapifhir/hapi-fhir-jpaserver-starter#running-via-docker-hub
CapabilityStatement将告诉您服务器可以做什么:http://localhost:8080/fhir/metadata
搜索资源:http://localhost:8080/fhir/ (例如http://localhost:8080/fhir/Patient)
服务器将是空的,因此您将需要POST/导入数据。
https://stackoverflow.com/questions/65822478
复制相似问题