Maven编译 - 找不到符号

问题描述

我该如何解决这个“找不到符号”的编译错误

[ERROR] ../hapi-fhirstarters-simple-server/src/main/../SimpleRestfulServer.java:[30,43] cannot find symbol
[ERROR]   symbol:   class StaticCapabilityStatementInterceptor
[ERROR]   location: package ca.uhn.fhir.rest.server.interceptor

我导入了这个拦截器包(以及许多其他包):


// added to try to customize the capability statement
import ca.uhn.fhir.rest.server.interceptor.StaticCapabilityStatementInterceptor;
import ca.uhn.fhir.rest.server.interceptor.*;

这里是该包的文档:https://hapifhir.io/hapi-fhir//apidocs/hapi-fhir-server/ca/uhn/fhir/rest/server/interceptor/StaticCapabilityStatementInterceptor.html

在这里做错了什么?

这是我的完整进口清单:

package ca.uhn.fhir.example;

import javax.servlet.servletexception;
import javax.servlet.annotation.WebServlet;

import ca.uhn.fhir.context.FhirContext;
import ca.uhn.fhir.rest.server.RestfulServer;
import ca.uhn.fhir.rest.server.interceptor.ResponseHighlighterInterceptor;

import com.google.auth.oauth2.GoogleCredentials;
import com.google.cloud.firestore.Firestore;
import com.google.firebase.FirebaseApp;
import com.google.firebase.FirebaSEOptions;
import com.google.firebase.cloud.FirestoreClient;
import com.google.cloud.firestore.QueryDocumentSnapshot;
import com.google.cloud.firestore.QuerySnapshot;
import com.google.cloud.firestore.WriteResult;
import com.google.common.collect.ImmutableMap;
import com.google.api.core.ApiFuture;

import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ExecutionException;
import java.io.*;
import java.util.Arrays;

// added to try to customize the capability statement
import ca.uhn.fhir.rest.server.exceptions.InternalErrorException;
import ca.uhn.fhir.rest.server.interceptor.StaticCapabilityStatementInterceptor;
import ca.uhn.fhir.rest.server.interceptor.*;
import ca.uhn.fhir.validation.ResultSeverityEnum;
//import org.hl7.fhir.common.hapi.validation.validator.FhirInstanceValidator;
import org.hl7.fhir.r4.model.CapabilityStatement;
import org.hl7.fhir.r4.model.Enumerations;
//import org.springframework.web.cors.CorsConfiguration;

解决方法

根据我上面的评论,我认为查看 Maven 配置对于评估缺少的依赖项很有用。

也就是说,我根据您提供的类查找了 Maven 库,发现它位于此依赖项中。根据需要插入您的项目版本:

<dependency>
    <groupId>ca.uhn.hapi.fhir</groupId>
    <artifactId>hapi-fhir-server</artifactId>
    <version>${project.version}</version>
</dependency>

确保您已将其添加到您的 Maven 配置中。也许检查一下你是否也有这些:https://hapifhir.io/hapi-fhir/docs/getting_started/downloading_and_importing.html

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...