无效的HAPI-FHIR注释

时间:2019-02-14 22:09:22

标签: hl7-fhir

我是FHIR的新手,我想寻求您的帮助和专业知识。 我遇到了HAPI-FHIR注释错误,我不知道如何解决。

我在患者身上遇到了这个错误

org.hl7.fhir.utilities.xhtml.XhtmlNode不包含任何有效的HAPI-FHIR注释

我的简单代码在下面

enter code here public class SimpleRead {

IGenericClient client = null;

public SimpleRead(String baseUrl) {
    FhirContext ctx = FhirContext.forDstu3();
    client = ctx.newRestfulGenericClient(baseUrl);





}

/**
 * Find the patient with the given ID and return the full name as a
 * single string.
 */
public String getNameByPatientID(String id) {


    // Invoke the client



  Patient myPatient =  (Patient)client.read().resource(Patient.class).withId(id).execute();






    return "";
}

感谢所有帮助!

0 个答案:

没有答案