我正在尝试实例化FhirContext对象,但出现错误。 下面是代码:-
import ca.uhn.fhir.context.FhirContext;
public class SampleEventParser {
public static void main(String[] args) {
FhirContext ctx = new FhirContext();
}
}
在pom.xml中,我使用了以下依赖项:-
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
<version>2.2-SNAPSHOT</version>
</dependency>
FhirContext无法解析为一种类型。我在pom.xml中缺少某些依赖项吗?我不熟悉Fhir HAPI库。