我已经实现了约会预订,其中@Create 交互用于创建约会。现在我想返回 MethodOutcome 以作为 @create 方法的响应。
MethodOutcome oMethodOutcome = new MethodOutcome();
oMethodOutcome.setId(new IdDt("Appointment", "3746", "1"));
但是,hapi 框架没有返回任何响应。理想的响应应该是什么样子,为什么 HAPI 没有返回它?我现在只是得到空响应和 HTTP 201 的状态码。
HAPI 创建示例:http ://hapifhir.io/doc_rest_operations.html
FHIR 标准:https ://www.hl7.org/fhir/overview-dev.html#1.8.1.6
顺便说一句,我正在使用 postmant 客户端来测试这个 web 服务