spring HAPI FHIR客户端-从公共测试服务器检索患者数据

2ic8powd  于 2024-01-05  发布在  Spring
关注(0)|答案(1)|浏览(241)

抱歉!如果我记录了这样的响应,我将尝试从测试服务器(https://api.logicahealth.org/DVJan21CnthnPDex/open)检索患者数据

  1. log.info("Returning: {}", client.getFhirContext().newJsonParser().setPrettyPrint(true).encodeToString(patient));

字符串
我得到了我需要的JSON,

  1. {"resourceType":"Patient","id":"smart-1032702","meta":{"versionId":"1","lastUpdated":"2020-07-15T02:51:25.000+00:00","source":"#KQSArAdbxORTtqVw"},"text":{"status":"generated","div":"<div xmlns=\"http://www.w3.org/1999/xhtml\">Amy Shaw</div>"},"identifier":[{"use":"official","type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"MR","display":"Medical Record Number"}],"text":"Medical Record Number"},"system":"http://hospital.smarthealthit.org","value":"smart-1032702"}],"active":true,"name":[{"use":"official","family":"Shaw","given":["Amy","V"]}],"telecom":[{"system":"phone","value":"800-782-6765","use":"mobile"},{"system":"email","value":"[email protected]"}],"gender":"female","birthDate":"2007-03-20","address":[{"use":"home","line":["49 Meadow St"],"city":"Mounds","state":"OK","postalCode":"74047","country":"USA"}],"generalPractitioner":[{"reference":"Practitioner/smart-Practitioner-72004454"}]}


但如果我试图返回病人对象在mvc控制器

  1. Bundle bundle =
  2. client.search()
  3. .forResource(Patient.class)
  4. .where(Patient.IDENTIFIER.exactly().identifier("smart-1032702"))
  5. .returnBundle(Bundle.class)
  6. .execute();
  7. Patient patient = (Patient) bundle.getEntry().get(0).getResource();
  8. log.info("Returning: {}", client.getFhirContext().newJsonParser().setPrettyPrint(true).encodeToString(patient));
  9. return patient;


我在浏览器中接收到404 entity-not-found.我还创建了这样消息转换器

  1. @Bean
  2. public IGenericClient fhirClient() {
  3. IGenericClient client = FhirContext.forR4().newRestfulGenericClient(base);
  4. client.getFhirContext().registerCustomType(Patient.class);
  5. return client;
  6. }
  7. @Bean
  8. public RestTemplate restTemplate() {
  9. RestTemplate restTemplate = new RestTemplate();
  10. List<HttpMessageConverter<?>> messageConverters = restTemplate.getMessageConverters();
  11. messageConverters.add(converter());
  12. messageConverters.add(hapiMessageConverter());
  13. return restTemplate;
  14. }
  15. @Bean
  16. public MappingJackson2HttpMessageConverter converter() {
  17. MappingJackson2HttpMessageConverter converter = new MappingJackson2HttpMessageConverter();
  18. ObjectMapper objectMapper = new ObjectMapper();
  19. objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
  20. converter.setObjectMapper(objectMapper);
  21. MediaType fhir = new MediaType("application", "json+fhir");
  22. List<MediaType> jacksonTypes = new ArrayList<>(converter.getSupportedMediaTypes());
  23. jacksonTypes.add(fhir);
  24. converter.setSupportedMediaTypes(jacksonTypes);
  25. return converter;
  26. }
  27. @Bean
  28. public HapiHttpMessageConverter hapiMessageConverter() {
  29. return new HapiHttpMessageConverter();
  30. }
  31. @Override
  32. public void extendMessageConverters(List<HttpMessageConverter<?>> messageConverters) {
  33. messageConverters.add(0, hapiMessageConverter());
  34. }`


如何通过转换器bean将fhir资源转换为json?谁能告诉我做错了什么?谢谢回复!

eivgtgni

eivgtgni1#

您的搜索将查看具有与您的值匹配的Patient.id标识符的Patients。这将查看属于Patient数据一部分的业务标识符列表,而不是查看包含技术标识的Patient.id字段。如果将where子句更改为:

  1. .where(Patient.RES_ID.matches().value("smart-1032702"))

字符串
或者,如果你只使用技术标识,你可以使用read来代替search,然后,你将立即得到你的Patient对象,而不是Bundle。

相关问题