如文档中所述,我正在从 Spring Boot 应用程序访问 Azure Blob,我已包含以下 JAR,
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob</artifactId>
<version>12.12.0</version>
</dependency>
然后我使用以下代码列出 Azure blob 中的文件,
BlobContainerClient blobContainerClient = new BlobContainerClientBuilder()
.endpoint(fileServerURL + "/" + containerName + "/test/123" + "?" + sasToken)
.buildClient();
我正在访问容器内的 blob 并列出文件,
blobContainerClient.listBlobs()
.stream().<<mycode>>
当我尝试调试时,断点在第 2 行之后运行,恰好在 .endpoint() 方法调用处。没有奇怪的堆栈跟踪(我试图包含在 try/catch 中)但没有用。我在客户端收到以下异常,
Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError: Could not initialize class com.azure.storage.blob.implementation.util.ModelHelper