我是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 "";
}
感谢所有帮助!