实例化FhirContext对象时出错

时间:2018-12-07 11:10:55

标签: hapi-fhir

我正在尝试实例化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库。

0 个答案:

没有答案